数组里对象去重方法

数组里对象去重方法

removalData(arrData) {

        var hash = {};
        arrData= arrData.reduce(function(item, next) {
                //num_iid是你要以什么属性去重
            hash[next.num_iid] ? '' : hash[next.num_iid] = true && item.push(next);
            return item
        }, [])
        return arrData;
    },

你可能感兴趣的:(数组里对象去重方法)