我想创建自定义过滤器,当为true时,data.status:'yes'只重复,当为false时,'yes'和'no'重复使用自定义过滤器

时间:2015-08-30 07:40:55

标签: angularjs angularjs-ng-repeat angular-filters

demo

我想创建自定义过滤器,当为true时,data.status:'yes'仅重复,false时,'yes'和'no'重复使用自定义过滤器

<body ng-app="myApp">
 <div ng-controller="SampleController as c">
 <input type="checkbox" name="check" ng-model="checked">
 <label for="check" ng-init="checked=true">only yes , toggle yes & no</label>
 <div>filter list </div>
 <div>
  <div>from get ServiceFunction</div>
  <ul>
    <li ng-if="checked" ng-repeat="fafa in c.getedService.data">
      <!-- Service list-->
      {{fafa.namae}}
      </li>
     </ul>
    </div>
  </div>
</body>

1 个答案:

答案 0 :(得分:0)

使用ng-model时出现小拼写错误,您使用mg-model代替ng-modelHere是工作的代码。