gpt4 book ai didi

node.js - Mongodb node.js集合中所有文档的键值总和

转载 作者:可可西里 更新时间:2023-11-01 09:14:08 27 4
gpt4 key购买 nike

这是我的购物车收藏,它有一个价格键。在我的 node.js 代码中,我想查看两个文件的价格总和。我尝试使用聚合但没有用

cart collection

[
{
"_id": "57244d0a05dcf1d7151ede7f",
"art_id": "57244c9505dcf1d7151ede7c",
"artist_id": "5721a528c9d28cd51f014038",
"user_id": "5721a528c9d28cd51f014038",
"price": "90"
},
{
"_id": "57244d1f05dcf1d7151ede80",
"art_id": "57244c6105dcf1d7151ede7b",
"artist_id": "5721a528c9d28cd51f014038",
"user_id": "5721a528c9d28cd51f014038",
"price": "150"
}
]

node.js code

function test(req, res, next) {
db.users.findOne({
_id: mongoskin.helper.toObjectID(req.session.user._id)
}, function(err, user) {
if (!user) {
return res.status(400).send({
status: '404 user not found'
});
}
db.cart.find({
user_id: req.session.user._id
}).toArray(function(err, result) {
if (err) return next(err);
res.send(result)
});
});
}

最佳答案

要添加所有价格可以使用聚合,例如:

db.cart.aggregate(
[
{
$group : {
_id : null,
totalPrice: { $sum: price }
}
}
]
).exec(function(error, result) {
if (err) return next(err);
res.send(result)
});

关于node.js - Mongodb node.js集合中所有文档的键值总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36952183/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com