command.and

2020-08-28 14:48 更新

解釋:數(shù)據(jù)庫(kù)查詢指令,用于連接多個(gè)篩選條件,各條件之間滿足邏輯"與"的關(guān)系,該指令可接受數(shù)組類型的參數(shù)。

例如,篩選出數(shù)據(jù)表中 age 大于 25 且小于 50 的用戶

代碼示例

級(jí)聯(lián)查詢寫(xiě)法:

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    db.collection('users')
      .where({
          age: _.gt(25).and(_.lt(50))
      })

前置查詢寫(xiě)法:

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    db.collection('users')
      .where({
          age: _.and(_.gt(25), _.lt(50)) // and指令同時(shí)支持傳入數(shù)組,_.and([_.gt(25), _.lt(50)])
      })


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)