仅对集合中的某些项使用ng-repeat

时间:2015-07-16 01:56:09

标签: angularjs angularjs-ng-repeat

我使用ng-repeat指令打印出用户的所有帖子。

<div ng-repeat="post in user.posts">
  <p>{{ post.content }}</p>
</div>

我想将此限制为只打印出有&#34; is_public&#34;属性等于&#34; true&#34;。我怎么能这样做?

<div ng-repeat="post in user.posts ??? if post.public == true">
  <p>{{ post.content }}</p>
</div>

我已经看到filter使用了ng-repeat,但它看起来像是用于动态过滤,而不是我知道过滤器应该始终是什么的情况。< / p>

0 个答案:

没有答案