在 JavaScript 中,可以使用 Set 数据结构来实现数组中对象去重。具体步骤如下:
1.遍历数组,将每个元素作为 Set 的值插入到 Set 中;
2.如果 Set 中已经存在该元素,则不进行插入。
以下是一个去除数组中对象 id 属性相同的方法示例:
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 1, name: 'Charlie' },
{ id: 3, name: 'David' }
];
const result = Array.from(new Set(arr.map(item => item.id))).map(id => {
return arr.find(item => item.id === id);
});
console.log(result); // [{ id: 1, name: 'Alice' }, { id: 2, name: 'Bob' }, { id: 3, name: 'David' }]
上述代码中,使用 Set 对 arr 数组中的 id 属性进行去重,并通过 Array.from() 方法将 Set 转化为数组。然后通过 Array.prototype.map() 函数遍历 id 数组,并返回对应 arr 数组中的对象。最终得到一个去重后的新数组 result。