4.2.2.8. nin

wx.cloud.database.command.nin(values)

查询筛选条件,表示字段的值需不在给定的数组内。

参数
  • values (any[]) – 查询条件

返回类型

Command

示例

找出进度不是 0 或 100 的 todo

const _ = db.command
db.collection('todos').where({
  progress: _.nin([0, 100])
})
  .get({
    success: console.log,
    fail: console.error
  })