Command.nor(expressions: any[]): Command

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

查询操作符,用于表示逻辑 "都不" 的关系,表示需不满足指定的所有条件。如果记录中没有对应的字段,则默认满足条件。

参数

expressions: any[]

返回值

Command

示例 1

筛选出进度既不小于20又不大于80的 todo :

  1. const _ = db.command
  2. db.collection('todo').where({
  3. progress: _.nor([_.lt(20), _.gt(80)])
  4. })

以上同时会筛选出不存在 progress 字段的记录,如果要要求 progress 字段存在,可以用 exists 指令:

  1. const _ = db.command
  2. db.collection('todo').where({
  3. progress: _.exists().nor([_.lt(20), _.gt(80)])
  4. // 等价于以下非链式调用的写法:
  5. // progress: _.exists().and(_.nor([_.lt(20), _.gt(80)]))
  6. }).get()

示例 2

筛选出 progress 不小于 20 且 tags 数组不包含 miniprogram 字符串的记录:

  1. const _ = db.command
  2. db.collection('todo').where(_.nor([{
  3. progress: _.lt(20),
  4. }, {
  5. tags: 'miniprogram',
  6. }])).get()

以上会筛选出满足以下条件之一的记录:

  • progress 不小于 20 且 tags 数组不包含 miniprogram 字符串
  • progress 不小于 20 且 tags 字段不存在
  • progress 字段不存在 且 tags 数组不包含 miniprogram 字符串
  • progress 不小于 20 且 tags 字段不存在如果要求 progresstags 字段存在,可以用 exists 指令:
  1. const _ = db.command
  2. db.collection('todo').where(
  3. _.nor([{
  4. progress: _.lt(20),
  5. }, {
  6. tags: 'miniprogram',
  7. }])
  8. .and({
  9. progress: _.exists(true),
  10. tags: _.exists(true),
  11. })
  12. )

调用风格

方法接收两种传参方式,一是传入一个数组参数,二是传入多个参数,效果一样。

  1. // 传入数组
  2. function nor(expressions: Expression[]): Command
  3. // 传入多参数
  4. function nor(...expressions: Expression[]): Command