Command.nin(value: any[]): Command

支持端:小程序 , 云函数

查询筛选操作符,表示要求值不在给定的数组内。

参数

value: any[]

返回值

Command

示例代码

找出进度不是 0 或 100 的 todo

  1. const _ = db.command
  2. db.collection('todos').where({
  3. progress: _.nin([0, 100])
  4. })
  5. .get({
  6. success: console.log,
  7. fail: console.error
  8. })