[ES6] arr.filter的多条件实现,即arr.reduce实现多条件筛选(并集)
当要过滤数组,关键字有多个怎么办
keyList = new Map(); // 保存你的关键字,别的数据结构也可以
handelColumKeyFilter(key, index) {
if (key === '') {
this.keyList.delete(index);
} else {
this.keyList.set(index, key);
}
if (this.keyList.size === 0) {
//
原创
2020-06-02 13:58:38 ·
2075 阅读 ·
0 评论