使用默认值计算$ sum

时间:2017-05-07 13:10:35

标签: node.js mongodb mongoose

我想计算每次特定通话的总支出。

我正在收集具有特定callId的订单,然后从结果中汇总totalPrice属性。

它有效,除非没有顺序,我得到一个空数组。我想将totalSpending的默认值改为0。

这是我的疑问:

Order.aggregate({
    $match: { callId: mongoose.Types.ObjectId(callId) }
}, {
    $group: { _id: null, totalSpending: { $sum: '$totalPrice' } }
})

如果没有订单,我会得到一个空数组,如果至少有一个订单,我会得到[ { _id: null, totalSpending: 50 } ]

2 个答案:

答案 0 :(得分:1)

你可以尝试这样的事情。

$project$cond一起使用,而不是$match。这会将不匹配的callId文档totalPrice覆盖为0。

 Order.aggregate({
    $project: {
        totalPrice: {
            $cond: [{
                $eq: ["$callId", mongoose.Types.ObjectId(callId)]
            }, "$totalPrice", 0]
        }
    }
 }, {
    $group: {
        _id: null,
        totalSpending: {
            $sum: '$totalPrice'
        }
    }
 })

答案 1 :(得分:0)

我猜你总和需要一个$ ifNull子句,如果它为null则将返回totalprice in sum,否则它将返回0;

Order.aggregate({
    $match: { callId: mongoose.Types.ObjectId(callId) }
}, {
    $group: { _id: null, totalSpending: { 
        $sum: { 
                $ifNull: ['$totalSpending', 0] 
            }
    }
})