// 数组去重 arr:数组;key:根据数组中为key的键名去重
filterArr(arr, key) {
const hash = {};
return arr.reduce((ss, item) => {
hash[item[key]] ? '' : (hash[item[key]] = true && ss.push(item));
return ss;
}, []);
},
// 数组去重 arr:数组;key:根据数组中为key的键名去重
filterArr(arr, key) {
const hash = {};
return arr.reduce((ss, item) => {
hash[item[key]] ? '' : (hash[item[key]] = true && ss.push(item));
return ss;
}, []);
},