码迷,mamicode.com
首页 > Web开发 > 详细

AngularJs学习之一使用自定义的过滤器

时间:2016-08-27 22:07:46      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

script:

参数item是由AngularJs提供的,是应当被过滤的对象集合。而showComplete是我们传入的参数。

{{item.action}}

用ng-model创造一个名为showComplete的数据

script:

<script type="text/javascript">// <![CDATA[
todoApp.filter("checkedItems",function(){
    return function (items,showComplete){
    var resultArr =[];
    angular.forEach(items,function(item){
    if(item.done==false||showComplete==true){
    resultArr.push(item);
    }
    });
    return resultArr;
    }
});
//</script>

<p>参数item是由AngularJs提供的,是应当被过滤的对象集合。而showComplete是我们传入的参数。</p>
<p>{{item.action}}</p>

<tr ng-repeat="item in todo.items|checkedItems:showComplete|orderBy:‘action‘">
<td>{{item.action}}</td>
</tr>


用ng-model创造一个名为showComplete的数据模型值。
<lable><input type="checkbox" ng-model="showComplete">show complete</input></lable>

  

show complete

 

AngularJs学习之一使用自定义的过滤器

标签:

原文地址:http://www.cnblogs.com/yansum/p/5813741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!