JS 去重的方法

  1. 对象存放,哈希算法(映射)判断
Array.prototype.unique = function() {
    // s为hash表,r为临时数组
    var s = {}, r = [];
    for (var i = 0; i < this.length; i++) {
        // 如果hash表中没有当前项
        if (!s[this[i]]) {
            // 存入hash表
            [this[i]] = true;
            // 把当前数组的当前项push到临时数组里面
            r.push(this[i]); 
        }
    }
    return r;
}
  1. 先排序,后比较
Array.prototype.unique = function() {
    this.sort();
    var s = [this[0]];
    for (var i = 1; i < this.length; i++) {
        if (this[i] !== s[s.length - 1]) {
            s.push(this[i]);
        }
    }
    return s;
}
  1. 数组存放,indexOf()判断(支持ie6-8)
Array.prototype.unique = function() {
    var n = []; // 存放已遍历的满足条件的元素
    for (var i = 0; i < this.length; i++) {
        // indexOf()判断当前元素是否已存在
        if (n.indexOf(this[i]) == -1) n.push(this[i]);
    }
    return n;
}
  1. 过滤去重
var arr = ['apple', 'strawberry', 'banana', 'pear', 'apple', 'orange', 'orange', 'strawberry'];
var r = arr.filter(function (element, index, self) {
    return self.indexOf(element) === index;
});
  1. (unique)去重
Array.prototype.unique = function(){
return [...new Set(this)];
}
var array = [1, 2, 3, 43, 45, 1, 2, 2, 4, 5];
array.unique();
  1. (reduce)去重
let arr = ['e', 'l', 'l', 'o'];
const hash = {};
arr.reduce((accumulator, currentValue, currentIndex, array) => {
   hash[next.itemid] ? '' : hash[next.itemid] = true && item.push(next);
return item;
});
$.ajax({
		url:xyt,
		type: "get",
		dataType: 'json',
		data:{
			method:'label',
		},
		success: function(data) {
			console.log(data)
			var list = []
			//遍历数据
			Object.keys(data.info).forEach(key => {
				// console.log(data.info[key])
				//把数组保存到空数据里
				list.push(data.info[key])
			})
			console.log(list)
			const hash = {};
			//通过reduce去重,
			const newArray = list.reduce((item, next)=>{
					hash[next.itemid] ? '' : hash[next.itemid] = true && item.push(next);
					return item;
			},[])
			console.log(newArray)
		},
		error: function() {
			console.log('error失败')
		}
	})
如下图

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Sunny

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值