博客
关于我
js中数组对象去重的方法
阅读量:359 次
发布时间:2019-03-04

本文共 1357 字,大约阅读时间需要 4 分钟。

方法一:对象访问属性法

通过遍历数组,检查对象中是否存在对应的键值。如果不存在,则将该对象添加到结果数组中。

var arr = [{key: '01', value: '乐乐'}, {key: '02', value: '博博'}, {key: '03', value: '淘淘'}, {key: '04', value: '哈哈'}, {key: '01', value: '乐乐'}];        var result = [];        var obj = {};        for (var i = 0; i < arr.length; i++) {          var key = arr[i].key;          if (!obj.hasOwnProperty(key)) {            obj[key] = arr[i];            result.push(obj[key]);          }        }

方法二:数组reduce方法

利用数组的reduce方法,逐一处理数组中的每个对象,检查对象中是否存在对应的键值。如果不存在,则将该对象添加到结果数组中。

var arr = [{key: '01', value: '乐乐'}, {key: '02', value: '博博'}, {key: '03', value: '淘淘'}, {key: '04', value: '哈哈'}, {key: '01', value: '乐乐'}];        var result = arr.reduce(function (acc, current) {          var key = current.key;          if (!acc.hasOwnProperty(key)) {            acc[key] = current;            return acc;          } else {            return acc;          }        }, {});

方法三:ES6 Set去重

通过遍历数组,使用ES6 Set数据结构记录已存在的键值,逐一过滤出唯一的对象数组。

let arr = [{id: 1, name: 'm'}, {id: 2, name: 'mu'}, {id: 4, name: 'muz'}, {id: 2, name: 'muzi'}];        let idSet = new Set();        let newArr = arr.filter(function (obj) {          const existingId = idSet.has(obj.id);          idSet.add(obj.id);          return !existingId;        });        console.log(newArr); // [{id: 1, name: 'm'}, {id: 2, name: 'mu'}, {id: 4, name: 'muz'}]

转载地址:http://oetr.baihongyu.com/

你可能感兴趣的文章
Nginx配置参数中文说明
查看>>
Nginx配置好ssl,但$_SERVER[‘HTTPS‘]取不到值
查看>>
Nginx配置实例-负载均衡实例:平均访问多台服务器
查看>>
NIFI大数据进阶_连接与关系_设置数据流负载均衡_设置背压_设置展现弯曲_介绍以及实际操作---大数据之Nifi工作笔记0027
查看>>
Nio ByteBuffer组件读写指针切换原理与常用方法
查看>>
NIO Selector实现原理
查看>>
nio 中channel和buffer的基本使用
查看>>
NISP一级,NISP二级报考说明,零基础入门到精通,收藏这篇就够了
查看>>
NI笔试——大数加法
查看>>
NLP 基于kashgari和BERT实现中文命名实体识别(NER)
查看>>
Nmap扫描教程之Nmap基础知识
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>