gpt4 book ai didi

node.js - Mongoose,Node.js 从一堆文档中获取一个字段的总和

转载 作者:可可西里 更新时间:2023-11-01 09:20:39 24 4
gpt4 key购买 nike

我有这个 mongoose 方法/查询,它可以找到某个用户的所有“收入”,但前提是“收入”的日期在当月内。

代码:

module.exports.getMonthlyIncome = function(userId, callback){
const now = new Date();

const year = now.getFullYear();
const month = now.getMonth();
const date = now.getDate();

const start = new Date(year, month, 1);
const end = new Date(year, month, 30);

Income.find({owner: userId, date: { $gte: start, $lt: end }}, callback);
}

结果:

[
{

"_id": "58cc9ee50fe27e0d2ced5193",
"amount": 600,
"description": "Ripco Salary",
"owner": "58cc9e950fe27e0d2ced5192",
"__v": 0,
"date": "2017-03-17T00:00:00.000Z"
},

{

"_id": "58ccc3cfca6ea10980480d42",
"amount": 450,
"description": "Another Ripped co salary",
"owner": "58cc9e950fe27e0d2ced5192",
"__v": 0,
"date": "2017-03-26T00:00:00.000Z"
}

]

结果不出所料,给了我某用户当月的2份收入证明。

现在,我想从这些文档中获取每个“金额”字段的总和。

所以在这种情况下,总和为 1050。

我如何在 Mongoose 中实现这一目标?

非常感谢任何帮助,干杯。

最佳答案

您可以使用 mongoose Aggregation pipeline计算多个文档的 amount 总和。

你需要使用$match , 来匹配查询条件, $group计算多个文档的总和。

Income.aggregate([{
$match : { $and : [ {owner: userId}, {date: { $gte: start, $lt: end } }] },
},{
$group : {
_id : null,
total : {
$sum : "$amount"
}
}
}],callback);

希望这对您有所帮助!

关于node.js - Mongoose,Node.js 从一堆文档中获取一个字段的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42871144/

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