我有一个像这样的ID列的表,
ID 1 2 3 4 5
当我键入值1时,它显示: ID 1
但是当我键入值1,3时,它没有显示任何内容。
任何人都可以帮我解决这个问题吗?谢谢。
这是我的过滤代码:
textFiltering(field: string, $event) {
if ($event.value) {
const value = $event.value;
this.source = this._master.filter(record => {
return record[field].toUpperCase().indexOf(value) > -1;
});
} else {
this.source = this._master;
}
}
答案 0 :(得分:3)
当您传递1,3时,您需要将字符串拆分为数组[1,3]并使用 array.includes
来检查数组中是否存在元素。