首页 > 编程语言 > 详细

js数组对象去重

时间:2020-11-13 16:23:03      阅读:29      评论:0      收藏:0      [点我收藏+]

js数组对象去重:

<html>

<head>
  <title>我的第一个 HTML 页面</title>
</head>

<body>
</body>
<script>
  let obj = [{
      id: 1,
      type: 1,
    },
    {
      id: 2,
      type: 2,
    },
    {
      id: 2,
      type: 2,
    },
    {
      id: 2,
      type: 2,
    },
    {
      id: 2,
      type: 2,
    },
    {
      id: 3,
      type: 3,
    },
    {
      id: 1,
      type: 1,
    },
  ]
  let arry = [1, 2]

  function unique(arr) {
    const res = new Map();
    return arr.filter((arr) => !res.has(arr.type) && res.set(arr.type, 1));
  }
  obj = unique(obj);
  console.log(obj);
  obj.forEach(i => {
    arry.forEach(item => {
      if (item == i.type) {
        console.log(item)
      }
    })
  })
</script>

</html>

  

js数组对象去重

原文:https://www.cnblogs.com/hudunyu/p/13969702.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!