码迷,mamicode.com
首页 > 编程语言 > 详细

对象数组去重

时间:2020-01-11 10:14:01      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:pre   alt   img   mic   fun   script   console   items   ons   

   //对象数组的去重
    function uniqObjInArray(objarray) {
      let len = objarray.length;
      let tempJson = {};
      let res = [];
      for (let i = 0; i < len; i++) {        //取出每一个对象   
        tempJson[JSON.stringify(objarray[i])] = true;
      }
      let keyItems = Object.keys(tempJson);
      for (let j = 0; j < keyItems.length; j++) {
        res.push(JSON.parse(keyItems[j]));
      }
      return res;
    }

  

let objArr = [
      {
        InvoiceItemCode: ‘2‘,
        InvoiceItemName: ‘年后‘,
        Amount: 0,
      },
      {
        InvoiceItemCode: ‘2‘,
        InvoiceItemName: ‘年后‘,
        Amount: 0,
      },
      {
        InvoiceItemCode: ‘3‘,
        InvoiceItemName: ‘年后333‘,
        Amount: 0,
      },
    ]

  技术图片

 let res3 = uniqObjInArray(objArr);
    console.log("res3 is ", res3);

  

对象数组去重

标签:pre   alt   img   mic   fun   script   console   items   ons   

原文地址:https://www.cnblogs.com/LFxanla/p/12178922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!