2020-07-10vue中对象数组去重

一般数组用new Set ( )

对象数组
unique(arr) {
const res = new Map();
return arr.filter((arr) => !res.has(arr.id) && res.set(arr.id, 1));
},

你可能感兴趣的:(2020-07-10vue中对象数组去重)