Command.not(command: Command): Command

支持端:小程序 2.8.3, 云函数 1.2.1, Web

查询操作符,用于表示逻辑 “非” 的关系,表示需不满足指定的条件。

参数

command: Command

返回值

Command

示例

如筛选出进度不等于100的 todo:

  1. const _ = db.command
  2. db.collection('todo').where({
  3. progress: _.not(_.eq(100))
  4. })

not 也可搭配其他逻辑指令使用,包括 and, or, nor, not,如 or

  1. const _ = db.command
  2. db.collection('todo').where({
  3. progress: _.not(_.or([_.lt(50), _.eq(100)]))
  4. })