如何使用reduce(下划线?)对对象数组中的一些值求和



我有以下JSON结构:

var fooArray =
    [{ name: 'firstValue',
     price1: 20,
     price2: 11
    },
    {  name: 'secondValue',
     price1: 54,
     price2: 13
    },
    {  name: 'thirdValue',
     price1: 3,
     price2: 6
    }]

如何对对象数组中的值求和?(除了使用for循环)

{price1: 77,
 price2: 28}

这与@MatthewMcveigh的答案类似,但结果对象没有虚假的name属性:

_.reduce(fooArray, function (accum, x) {
    return { 
        price1: x.price1 + accum.price1, 
        price2: x.price2 + accum.price2
    };
}, {price1: 0, price2: 0});

您可以使用一个求和属性的函数来减少数组:

_.reduce(fooArray, function (accum, x) {
    return { 
        price1: x.price1 + accum.price1, 
        price2: x.price2 + accum.price2
    };
});

相关内容

  • 没有找到相关文章