Collection.where

设置查询条件中的文档筛选条件

参数

名称类型必须说明
conditionObject文档筛选条件

返回值:Collection

代码示例

  1. const cloud = require('swan-server-sdk')
  2. exports.main = async (event, context) => {
  3. cloud.init(context)
  4. const db = cloud.database()
  5. const cmd = db.command
  6. try {
  7. return await db.collection('articles').where({
  8. status: 0
  9. visits: cmd.gt(100)
  10. }).get()
  11. }
  12. catch(err) {
  13. console.log(err)
  14. }
  15. }