Collection.where
设置查询条件中的文档筛选条件
参数
名称 | 类型 | 必须 | 说明 |
---|---|---|---|
condition | Object | 是 | 文档筛选条件 |
返回值:Collection
代码示例
const cloud = require('swan-server-sdk')
exports.main = async (event, context) => {
cloud.init(context)
const db = cloud.database()
const cmd = db.command
try {
return await db.collection('articles').where({
status: 0
visits: cmd.gt(100)
}).get()
}
catch(err) {
console.log(err)
}
}