js根据指定字段数据去重
//根据id去重
function unique(arr1) {
const res = new Map();
return arr1.filter((a) => !res.has(a.id) && res.set(a.id, 1))
}
本文来自博客园,作者:WantRemake,转载请注明原文链接:https://www.cnblogs.com/SmallChen/p/15020743.html
//根据id去重
function unique(arr1) {
const res = new Map();
return arr1.filter((a) => !res.has(a.id) && res.set(a.id, 1))
}
本文来自博客园,作者:WantRemake,转载请注明原文链接:https://www.cnblogs.com/SmallChen/p/15020743.html