function unique(arr){ // 遍历arr,根据对象的属性categoryCode去重 var hash = {}; arr = arr.reduce(function(item, next) { hash[next.categoryCode] ? ‘‘ : hash[next.categoryCode] = true && item.push(next); return item }, []) console.log(arr); }
Posted JennyGao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组里的对象去重相关的知识,希望对你有一定的参考价值。
function unique(arr){ // 遍历arr,根据对象的属性categoryCode去重 var hash = {}; arr = arr.reduce(function(item, next) { hash[next.categoryCode] ? ‘‘ : hash[next.categoryCode] = true && item.push(next); return item }, []) console.log(arr); }
以上是关于数组里的对象去重的主要内容,如果未能解决你的问题,请参考以下文章