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); }
原文地址:https://www.cnblogs.com/JennyGao/p/8241826.html
时间: 2024-09-27 04:27:43