command.nin

2020-08-28 14:48 更新

解釋:數(shù)據(jù)庫(kù)查詢篩選指令,與 command.in 相反,表示查詢字段的值需不在指定的數(shù)組中,傳入的參數(shù)必須為 Array 類型。

例如,查詢 age 不為 25 或者 26 的用戶

代碼示例

    swan.cloud.init({
        env: 'envId'
    });
    const db = swan.cloud.database();
    const _ = db.command;
    db.collection('users')
      .where({
          age: _.nin([25, 26])
      })
      .get({
          success: users => console.log(users);
          fail: err => console.warn(err);
      });


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)