假设有一个集合(collection)名为 orders,其中包含订单信息,每个文档都有 amount 和 products 字段。
// 引入云开发模块
const db = wx.cloud.database();
// 使用聚合查询,并传递特定字段
db.collection('orders').aggregate()
.project({
_id: 0, // 不包含默认的 _id 字段
totalAmount: '$amount',
productNames: '$products.name' // 传递 products 字段中的 name 字段
})
.end()
.then(res => {
console.log('聚合结果:', res.list);
})
.catch(err => {
console.error(err);
});
在上述代码中,$project 阶段被用来选择要传递的字段,通过设置字段名和使用 $ 符号来指定字段路径。在这个例子中,totalAmount 字段直接传递了订单文档中的 amount 字段,而 productNames 字段通过指定 products.name 路径来传递订单文档中的产品名称字段。
请根据你的实际数据结构和需求来调整这个示例中的字段选择。这样,你就能够在聚合操作中选择性地传递特定字段了。
转载请注明出处:http://www.zyzy.cn/article/detail/5935/微信小程序