|
有多种实现方式:
一、使用 Set 对象:- Array.from(new Set(array))
复制代码 该方法会先创建一个 Set 对象,然后再使用 Array.from 方法将 Set 对象转换为数组,因为 Set 对象不允许有重复的元素,所以这样可以实现去重的效果。
但是,如果数组中的元素是对象,Set 对象会识别为不同的元素,所以不能直接使用该方法。为了解决这个问题,你可以使用一个映射函数,将数组中的对象映射为一个字符串或数字,然后再使用该方法。
以下是一个具体的例子:- const arr = [
- { id: 1, name: 'A' },
- { id: 2, name: 'B' },
- { id: 1, name: 'A' },
- { id: 3, name: 'C' }
- ];
- const result = Array.from(new Set(arr.map(item => JSON.stringify(item)))).map(item => JSON.parse(item));
- console.log(result);
复制代码
二、使用`reduce`方法:- const arr = [
- { id: 1, name: 'A' },
- { id: 2, name: 'B' },
- { id: 1, name: 'A' },
- { id: 3, name: 'C' }
- ];
- const result = arr.reduce((pre, cur) => {
- var exists = pre.find(item => JSON.stringify(item) === JSON.stringify(cur));
- if (!exists) {
- pre.push(cur);
- }
- return pre;
- }, []);
- console.log(result);
复制代码
三、使用`filter`方法- const arr = [
- { id: 1, name: 'A' },
- { id: 2, name: 'B' },
- { id: 1, name: 'A' },
- { id: 3, name: 'C' }
- ];
- const result =arr.filter((item, index, self) => {
- return self.findIndex(t => JSON.stringify(t) === JSON.stringify(item)) === index;
- });
- console.log(result);
复制代码
来源:https://www.cnblogs.com/lyso/p/17106852.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
|