我从API获取JSON响应。我需要实现的主要目标是计算对象中所有#的总和。我想使用下划线来简化这一点,但我无法理解如何实现这一目标。
这是我的回答。
[{
"data": {
"row": [{
"col": ["2015-02-10", "item1", "1"]
}, {
"col": ["2015-02-11", "item2", "1504"]
}, {
"col": ["2015-02-12", "item3", "66"]
}, {
"col": ["2015-02-13", "item4", "336"]
}, {
"col": ["2015-02-14", "item5", "19"]
}, {
"col": ["2015-02-15", "item6", "210"]
}, {
"col": ["2015-02-16", "item7", "36"]
}, {
"col": ["2015-02-17", "item8", "1742"]
}, {
"col": ["2015-02-18", "imem9", "61"]
}, {
"col": ["2015-02-19", "item10", "22"]
}]
}
}
}]
答案 0 :(得分:1)
您不需要使用下划线 - 您可以使用Array.prototype.reduce
执行此操作,这是JavaScript提供的_
- 样式函数之一:
var total = input[0].data.row.reduce(function (sum, element) {
return sum + (+element.col[2])
}, 0);
我假设您想要求和的数字是每个col
数组中的第三个元素,例如22
的{{1}}。
答案 1 :(得分:1)
如果您真的想使用Underscore,只需将其减少分组并将其总结即可。
var groups = _(items).groupBy(function(o) {
return o.col[1];
});
var sum2 = {};
_.each(groups, function(group, key) {
sum2[key] = _.reduce(group, function(memo, item) {
return memo + (parseInt(item.col[2]) || 0);
}, 0);
});