gpt4 book ai didi

angular - 是否可以将独立过滤器与列过滤器一起使用?

转载 作者:行者123 更新时间:2023-12-04 10:34:24 24 4
gpt4 key购买 nike

我知道我们可以使用没有单独列过滤器的独立过滤器 ( https://akveo.github.io/ng2-smart-table/#/examples/using-filters ) 但是可以同时使用两者吗?

我试图实现它但不能。见 https://stackblitz.com/edit/angular-2cwakj?file=src%2Fapp%2Ffilter-poc%2Ffilter-poc.component.ts

最佳答案

使用以下功能更改您的 onSearch 功能。

  onSearch(query: string = '') {
this.source = new LocalDataSource(this.data.filter((obj)=>{
if(obj.id.toString().indexOf(query)>-1 || obj.name.indexOf(query)>-1 ||
obj.username.indexOf(query)>-1 ||obj.email.indexOf(query)>-1 ) return true;
else false;
}))
}

关于angular - 是否可以将独立过滤器与列过滤器一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60256682/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com