关于优雅去重的一些感想
Posted 理小理...
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于优雅去重的一些感想相关的知识,希望对你有一定的参考价值。
也就不赘述有的没的,看代码↓
1、通过reduce()方法进行去重
this.pageDataList = this.pageDataList.reduce((tempArr, item) =>
if ( tempArr.findIndex( (ele) => ele.businessSettleManageId === item.businessSettleManageId ) === -1 )
tempArr.push(item);
return tempArr;
, []);
日常更新
以上是关于关于优雅去重的一些感想的主要内容,如果未能解决你的问题,请参考以下文章