数组去重
const map = new Map()
for (const item of column) {
if (!map.has(item.name)) {
map.set(item.name, item) } }
例如:
// 数组去重
const map = new Map();
for (const item of this.areaCode) {
if (!map.has(item.id)) {
map.set(item.id, item);
}
}
this.areaCode = [...map.values()];
加班万岁!