如何使用ng-hide隐藏某些元素?

时间:2016-10-11 17:00:06

标签: javascript android angularjs wordpress ionic-framework

我正在使用离子为我的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;
&#13;
&#13;

0 个答案:

没有答案