db.command.or

查询指令,用于表示逻辑 "或" 的关系,表示需同时满足多个查询筛选条件。或指令有两种用法,一是可以进行字段值的 “或” 操作,二是也可以进行跨字段的 “或” 操作。

字段值的 “或” 操作指的是指定一个字段值为多个值之一即可:

字段值的或操作:示例代码

如筛选出进度大于 80 或小于 20 的 todo:

流式写法:

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

前置写法:

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

前置写法也可接收一个数组:

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

跨字段的 “或” 操作指条件 “或”,相当于可以传入多个 where 语句,满足其中一个即可,示例:

跨字段的或操作:示例代码

如筛选出进度大于 80 或已标为已完成的 todo:

  1. const _ = db.command
  2. db.collection('todo').where(_.or([
  3. {
  4. progress: _.gt(80)
  5. },
  6. {
  7. done: true
  8. }
  9. ]))

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/command.or.html