我的对象groupBy.Food
看起来像
[
Object
amount: "15.0"
category: Object
debit: true
__proto__: Object
,
Object
amount: "10.0"
category: Object
debit: true
__proto__: Object
,
Object
amount: "11.1"
category: Object
debit: true
__proto__: Object
]
我想要的只是sum
每个对象的数量。我正在使用Lodash reduce作为
var s = _.reduce(groupBy.Food, function(s, entry){
return s + parseFloat(entry.amount);
});
当我看到s
我得到的价值时
s
"[object Object]1011.1"
我在这里没有做什么?