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}}
        

  • 相关阅读:
    Win32API界面库
    C++模板元编程
    C++模板元编程
    00,跨域的问题
    05,总结——关于用户登录以及注册
    04,Django Form源码阅读
    03,Django的认证系统——auth模块
    用户登录
    用户注册与忘记密码邮箱激活
    DjangoForm表单的基础
  • 原文地址:https://www.cnblogs.com/formyjava/p/4166308.html
Copyright © 2011-2022 走看看