计数操作
const db = wx.cloud.database();
const collection = db.collection('collectionName');
// 计数操作
collection.aggregate()
.count('total')
.end()
.then(res => {
console.log(res);
})
.catch(err => {
console.error(err);
});
上述示例中,通过 collection.aggregate() 创建聚合对象,然后使用 .count 方法进行计数操作。
分组操作
const db = wx.cloud.database();
const collection = db.collection('collectionName');
// 分组操作
collection.aggregate()
.group({
_id: '$key',
count: $.sum(1)
})
.end()
.then(res => {
console.log(res);
})
.catch(err => {
console.error(err);
});
上述示例中,通过 collection.aggregate() 创建聚合对象,然后使用 .group 方法进行分组操作。在分组操作中,_id 表示分组的字段,$key 表示要分组的字段,$.sum(1) 表示计算每个分组的数量。
排序操作
const db = wx.cloud.database();
const collection = db.collection('collectionName');
// 排序操作
collection.aggregate()
.sort({
key: 1
})
.end()
.then(res => {
console.log(res);
})
.catch(err => {
console.error(err);
});
上述示例中,通过 collection.aggregate() 创建聚合对象,然后使用 .sort 方法进行排序操作。在排序操作中,key: 1 表示按 key 字段升序排序,-1 表示降序排序。
这些是一些基本的聚合操作示例,你可以根据业务需求进行修改和扩展。更多详细的文档和 API 可以参考[微信小程序云开发官方文档 - 数据库 - 聚合操作](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/aggregate.html)。
转载请注明出处:http://www.zyzy.cn/article/detail/1259/微信小程序