gpt4 book ai didi

angular - 如何在 Angular 5 中使用 MatTableDataSource 创建自定义过滤?

转载 作者:太空狗 更新时间:2023-10-29 17:32:20 33 4
gpt4 key购买 nike

在 Angular 材官网Angular Material Table提到 filterPredicate: ((data: T, filter: string) => boolean) 将根据特定字段过滤数据。但不知道如何开始。有没有这方面的例子。

最佳答案

这个答案似乎展示了如何使用过滤谓词:

https://stackoverflow.com/a/50174938/6130716

它的工作原理是这样的:

this.dataSource.filterPredicate = (data: MyObject, filter: string) => {
return data.property == filter;
};

this.dataSource.filter = myValue;

关于angular - 如何在 Angular 5 中使用 MatTableDataSource 创建自定义过滤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49926854/

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