mongoose对所有文档的值进行求和

时间:2016-09-20 07:55:15

标签: javascript mongodb mongoose aggregation-framework mongodb-aggregation

我希望在与我的查询匹配的文档中计算名称数量的所有列

 tickets.count({time: {$gte: a}, time: {$lte: tomorrow}}).then(function (numTickets) {

如何获取名为amount的文档列的总结果?

示例,如果我有:

{ time: 20, amount: 40}
{ time: 40, amount: 20}

它会返回总金额(60)?

请记住,我确实需要在查询中使用{time: {$gte: a}, time: {$lte: tomorrow}

我该怎么做?

1 个答案:

答案 0 :(得分:2)

使用aggregation framework$match运算符$group尝试使用,例如

db.tickets.aggregate([
    { $match: { time: {$gte: a, $lte: tomorrow} } },
    { $group: { _id: null, amount: { $sum: "$amount" } } }
])

例如使用像这样的测试数据

/* 1 */
{
    "_id" : ObjectId("57e0ed40828913a99c2ceb46"),
    "time" : 20,
    "amount" : 40
}

/* 2 */
{
    "_id" : ObjectId("57e0ed40828913a99c2ceb47"),
    "time" : 40,
    "amount" : 20
}

/* 3 */
{
    "_id" : ObjectId("57e0ed40828913a99c2ceb48"),
    "time" : 50,
    "amount" : 10
}

/* 4 */
{
    "_id" : ObjectId("57e0ed40828913a99c2ceb49"),
    "time" : 10,
    "amount" : 5
}

管道(具有虚拟时间范围),如下所示

db.tickets.aggregate([
    { $match: { time: {$gte: 20, $lte: 40} } },
    { $group: { _id: null, amount: { $sum: "$amount" } } }
])

会给你这样的结果

/* 1 */
{
    "_id" : null,
    "amount" : 60
}

Pipeline in action