示例:聚合数据
1. 引入云开发模块
const db = wx.cloud.database();
2. 使用聚合查询
假设有一个集合(collection)名为 orders,其中包含订单信息,每个文档都有 amount 字段表示订单金额。
// 查询订单总金额
db.collection('orders').aggregate()
.group({
_id: null,
totalAmount: $.sum('$amount')
})
.end()
.then(res => {
console.log('总订单金额:', res.list[0].totalAmount);
})
.catch(err => {
console.error(err);
});
示例:过滤文档
1. 引入云开发模块
const db = wx.cloud.database();
2. 使用过滤文档查询
假设有一个集合(collection)名为 products,其中包含商品信息,每个文档都有 category 字段表示商品类别。
// 查询属于电子产品类别的商品
db.collection('products').where({
category: '电子产品'
})
.get()
.then(res => {
console.log('电子产品:', res.data);
})
.catch(err => {
console.error(err);
});
以上代码演示了如何在微信小程序中使用云开发的数据库聚合和过滤文档功能。请根据你的实际需求和数据结构进行适当的修改。
转载请注明出处:http://www.pingtaimeng.com/article/detail/5934/微信小程序