根据数组中对象属性进行去重

根据数组中对象属性进行去重

先遍历循环原数组,声明一个计数器,用于记录新数组的遍历次数,
在新数组的循环遍历中判断,新数组中每个对象的name属性是否等于原数组对象中的name属性,新数组每循环一次就判断新数组中对象属性是否都不存在
都不存在则num会和新数组长度相等,有一次属性存在,num就会少加1,当前对象就不会被push到新数组中

list.forEach((item) => {
     let num = 0;
      this.newList.forEach((items) => {
        if (item.name !== items.name) {
          num++;
        }
        if (num == this.newList.length) {
          this.newList.push(item);
        }
      });
    });
    console.log(this.newList);

你可能感兴趣的:(根据数组中对象属性进行去重)