聚合操作符:
1. $sum: 计算某字段的总和。
const _ = db.command;
db.collection('collectionName').aggregate()
.group({
_id: null,
total: _.sum('$fieldName')
})
.end();
2. $avg: 计算某字段的平均值。
const _ = db.command;
db.collection('collectionName').aggregate()
.group({
_id: null,
average: _.avg('$fieldName')
})
.end();
3. $max 和 $min: 计算某字段的最大值和最小值。
const _ = db.command;
db.collection('collectionName').aggregate()
.group({
_id: null,
max: _.max('$fieldName'),
min: _.min('$fieldName')
})
.end();
4. $push: 将某字段的值加入数组。
const _ = db.command;
db.collection('collectionName').aggregate()
.group({
_id: '$groupField',
values: _.push('$fieldName')
})
.end();
对象操作符:
1. $set: 设置字段的值。
const _ = db.command;
db.collection('collectionName').where({
condition: true
}).update({
data: {
fieldName: _.set('newValue')
}
});
2. $inc: 将字段的值增加特定的数值。
const _ = db.command;
db.collection('collectionName').where({
condition: true
}).update({
data: {
fieldName: _.inc(1)
}
});
3. $mul: 将字段的值乘以特定的数值。
const _ = db.command;
db.collection('collectionName').where({
condition: true
}).update({
data: {
fieldName: _.mul(2)
}
});
4. $remove: 从数组中移除特定的值。
const _ = db.command;
db.collection('collectionName').where({
condition: true
}).update({
data: {
arrayField: _.remove('valueToRemove')
}
});
请根据实际需求选择适合的操作符,并根据微信小程序云开发文档的最新版本查看详细用法和示例。
转载请注明出处:http://www.zyzy.cn/article/detail/1300/微信小程序