const db = wx.cloud.database();
const collection = db.collection('collectionName');
// 过滤文档
collection.aggregate()
.match({
status: 'published',
category: 'news'
})
.end()
.then(res => {
console.log(res);
})
.catch(err => {
console.error(err);
});
在上述示例中,通过 collection.aggregate() 创建聚合对象,然后使用 .match 方法进行过滤操作。在过滤操作中,status: 'published' 表示筛选 status 字段值为 'published' 的文档,category: 'news' 表示筛选 category 字段值为 'news' 的文档。
你可以根据实际业务需求修改和扩展示例中的过滤条件。更多详细的文档和 API 可以参考[微信小程序云开发官方文档 - 数据库 - 聚合操作](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/aggregate.html)。
转载请注明出处:http://www.zyzy.cn/article/detail/1269/微信小程序