let mergedItems = list.reduce((accumulator, currentItem) => {
let existingItem = accumulator.find(
(item) => item.manObject_name === currentItem.manObject_name
);
if (existingItem) {
existingItem.laborCostHand += currentItem.laborCostHand; //劳务费
existingItem.workDay += currentItem.workDay; //工日
existingItem.laborCost += currentItem.laborCost; //劳务费 不函数
} else {
accumulator.push({ ...currentItem });
}
return accumulator;
}, []);
reduce 用法 参考 JS 中 reduce()方法及使用详解_js reduce-CSDN博客
reduce 方法常用来取数字和,但是也可以initialValue 也可以传递数组或者对象,用来最终生成 新的数组或者对象,这点非常实用。
上面例子中的初始值是个空数组,之后不断地往里面塞入新的元素或者对元素的属性进行相加等,操作,最终相当于过滤并且对数组元素相加的效果,非常实用,代码精简化。
注意这里 initialValue 是个空数组,而每次循环后 返回值还是个数组,循环结束之后就相当于对原数组list 做个过滤和相关操作(相加),呢么最后一次循环返回的数组结果就是我们需要的对象数组。尽量少的代码实现了我们想要的效果。 之后再用 mergeItem 接受一下最新值,即可实现了我们的逻辑。