按角度过滤属性值

时间:2016-06-20 10:05:17

标签: angularjs angularjs-filter

有没有办法按属性过滤,如下所示:

count

没有自定义过滤功能?

4 个答案:

答案 0 :(得分:0)

您可以在控制器Related

中定义过滤器功能

或查看Here

答案 1 :(得分:0)

您可以使用ng-if指令

 ng-repeat="person in people" ng-if="person.age > 20" 

答案 2 :(得分:0)

如果由于某种原因您不想使用自定义filter,则可以应用ng-show,例如:

<td ng-show ="person.age > 20">{{person}}</td>

关于你的问题 - 你不能。

答案 3 :(得分:0)

<tr ng-repeat="person in people | filter:{person.age > 20}">

角度表达Doc.

此致