其他分享
首页 > 其他分享> > vue for循环中常见,某列数值的求和(合计)

vue for循环中常见,某列数值的求和(合计)

作者:互联网


例:求后台返回数据
this.dataInfo 中某个字段(item.totalSum)的和,只需添加computed,然后模板中直接可以使用totalSumAll (不需要再data中声明)
computed:{
totalSumAll(){
let totalSumAll = 0;
this.dataInfo.map((item) => {totalSumAll += item.totalSum})
return totalSumAll
},
}


 

标签:map,vue,dataInfo,某列,求和,totalSum,item,totalSumAll,computed
来源: https://www.cnblogs.com/shuihanxiao/p/10985832.html