vue中去除数组对象中重复的对象

使用方式直接调用下面的方法

this.unique(arr)

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

你可能感兴趣的:(javascript,typescript,开发语言)