arrUnique( list ) {
var newArr= [];
var arrId = [];
for(let item of list){
if(arrId.indexOf(item['text']) == -1){
arrId.push(item['text']);
newArr.push(item);
}
}
return newArr;
},
arrUnique( list ) {
var newArr= [];
var arrId = [];
for(let item of list){
if(arrId.indexOf(item['text']) == -1){
arrId.push(item['text']);
newArr.push(item);
}
}
return newArr;
},
本文标题:vue 去除数组中重复的对象
本文链接:https://www.haomeiwen.com/subject/vjaqnltx.html
网友评论