zoukankan      html  css  js  c++  java
  • AngularJs(Part 8)--Filters

    Filters
    AngularJS provides fileters to transfrom data from one kind to another . For example:
        {{user.birthday | date:'yyyy-MM-dd'}}
    In this example, the date filter is used to format user's birthday.
    A filter is nothing more than a global,named function that is invoked in view using the pipe(|)
    symbol with parameters separated by the colon(:).
    Fileters can be combined(chained) to form a pipeline.
        {{myLongString | limiTo:80 | lowercase}}
        
    Generally,there are two kind of filters built in AngujarJS: formatting fileters and array-transforming
    filters.
        array-transforming filters:limitTo; filter;orderBy.
        ng-repeat="item in logs | filter:{name:criteria,done:false}"
        the "filter" filter can also accept a function as it parameter.
        ng-repeat="item in logs | filter:checkName"
        
        $scope.checkName=function(item){
            return item.done=true;
        }

    sometime, we want the result of the "filter" filter for other use, like showing the size, then we can
        ng-repeat="item in filteredLogs=(logs | filter:checkName)"
        
        Total:{{filteredLogs.length}}
        

  • 相关阅读:
    存储过程
    springMVC学习
    springMVC学习
    学习之hibernate下册
    学习hibernate上册
    学习Struts2框架之下册
    学习Struts2框架上册
    四道java语言练习基础题:
    在开发第一个Android应用之前需要知道的5件事:
    JAVA程序员必须要学习的知识
  • 原文地址:https://www.cnblogs.com/formyjava/p/4166308.html
Copyright © 2011-2022 走看看