我使用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>