command.eq

2020-08-28 14:47 更新

解釋?zhuān)簲?shù)據(jù)庫(kù)查詢(xún)指令,用于查詢(xún)字段等于某個(gè)值,該指令接受一個(gè)參數(shù),可以是numberstring,objectboolean,array。

代碼示例

例如,查詢(xún)一條標(biāo)題為 'smartprogram' 的新聞時(shí),可以有以下兩種查詢(xún)方式:

傳入值的方式

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    db.collection('news')
      .where({
            title: 'smartprogram'
        })

查詢(xún)指令方式

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    const _ = db.command;
    db.collection('news')
      .where({
            title: _.eq('smartprogram')
        })


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)