gpt4 book ai didi

javascript - 如何在 ng-table 中使用正则表达式进行过滤?

转载 作者:行者123 更新时间:2023-12-03 06:03:13 27 4
gpt4 key购买 nike

我正在使用 ng-table 如何使用正则表达式而不是字符串进行搜索?

最佳答案

您可以在 ngTableParams 中使用自定义filterComparator:

$scope.tableParams = new this.ngTableParams({}, {
filterOptions: {
filterComparator: function(actual, expected) {
return typeof actual == 'string' && actual.match(new RegExp(expected, 'i'));
}
}
});

关于javascript - 如何在 ng-table 中使用正则表达式进行过滤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39664324/

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