4.2.1.7. where

指定筛选条件

wx.cloud.database.collection.where(rule)
参数
  • rule (object) – 筛选条件

返回类型

Query

示例

找出未完成的进度 50 的待办事项

const db = wx.cloud.database()
db.collection('todos').where({
  done: false,
  progress: 50
})
  .get({
    success: console.log,
    fail: console.error
  })