我正在使用离子为我的wordpress博客制作一个Android应用程序,我使用json数据从我的网站成功加载了帖子。我在每个帖子的复选框上使用了ng-hide,当我检查它时隐藏了特定的帖子。但我需要的是保留已检查的帖子并隐藏其他所有帖子。 在这帮帮我。三江源!
这是我的代码:
<div class="card" ng-repeat="story in stories | filter:searchbox" ng-hide="hidePost">
<div class="item">
<h1>{{story.title.rendered}}</h1>
</div>
<div class="item item-body">
<p ng-bind-html="story.content.rendered" ng-href="{{story.content.rendered}}" style="width:200px;">{{story.content.rendered}}</p>
</div>
<div class="item item-divider">
<ion-checkbox ng-model="hidePost">Hide</ion-checkbox>
</div>
</div>
&#13;