gpt4 book ai didi

javascript - ng-重复 : how to add multiple filters?

转载 作者:行者123 更新时间:2023-11-29 10:15:44 25 4
gpt4 key购买 nike

我想在同一个项目上使用多个过滤器进行 ng-repeat。我的想法是,对于下面的每个工作,我都有不同的属性,例如位置和薪水,我希望能够使用这两个条件来过滤结果。

到目前为止,我已经试过了:

<div ng-repeat="job in jobs | filter: location | filter: salary">

但是显然不行。

有人知道如何解决这个问题吗?

谢谢

最佳答案

您可以创建自定义过滤器。

<div ng-repeat="job in jobs | filter:customFilter">

在你的 Controller 中:

 $scope.customFilter = function(item) {
if('Condition on your item')
return true;
return false;

}

关于javascript - ng-重复 : how to add multiple filters?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22320769/

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