reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值
handleSelectionChange(val) {
this.selectList = val
//方法一
// this.sum2 = 0
// arr.forEach(item => {
// this.sum2 += item.dblamount
// })
},
computed: {
//方法二
sum() {
return this.selectList.reduce((all, val) => { return all + val.dblamount }, 0).toLocaleString()
}
//方法三
// sum() {
// return this._.sumBy(this.selectList, o => Number(o.dblamount))
// }
}
array.reduce(function(total, currentValue, currentIndex, arr), initialValue)
参数
|
描述
|
||||||||||
function(total,currentValue, index,arr)
|
必需。用于执行每个数组元素的函数。
函数参数:
|
||||||||||
initialValue
|
可选。传递给函数的初始值
|