Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个转发器,并且正在使用过滤器来过滤查询,例如
ng-repeat="item in items | filter:query"
我添加了一个选择选项,并希望将其添加为附加过滤器。
关于如何将其与当前过滤器一起添加的任何建议?
谢谢!
尝试
ng-repeat="item in items | filter:myFilterFunc"
在哪里
$scope.myFilterFunc = function (item) { //return true or false depending on multiple conditions };
您可以访问该函数内item的任何内容。$scope使用一些if语句,您应该能够实现所需的行为。
item
$scope
if