Collection.where

指定筛选条件

方法签名如下:

  1. function where(rule: object): Query

方法接受一个必填对象参数 rule,用于定义筛选条件

示例代码

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

  1. const cloud = require('wx-server-sdk')
  2. cloud.init()
  3. const db = cloud.database()
  4. exports.main = async (event, context) => {
  5. try {
  6. return await db.collection('todos').where({
  7. done: false,
  8. progress: 50
  9. })
  10. .get()
  11. } catch(e) {
  12. console.error(e)
  13. }
  14. }

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/collection.where.html