4.2.2.11. and

wx.cloud.database.command.and(con1[,con2[,con3[...]]])

查询指令,用于表示逻辑 “与” 的关系,表示需同时满足多个查询筛选条件

参数
  • conN (object) – 查询条件

返回类型

Command

示例

如筛选出进度大于 50 小于 100 的 todo:

流式写法:

const _ = db.command
db.collection('todo').where({
  progress: _.gt(50).and(_.lt(100))
})

前置写法:

const _ = db.command
db.collection('todo').where({
  memory: _.and(_.gt(50), _.lt(100))
})