Angularjs过滤器是 angularjs非常棒的特性之一。有朝一日,你可能需要使用自定义过滤器,所以下面这篇文章主要给大家介绍了Angular.Js中过滤器filter与自定义过滤器filter的相关资料,需要的朋友可以参考借鉴,下面来一起看看吧。
本文主要给大家介绍了Angular.Js过滤器filter与自定义过滤器filter的相关内容,分享出来供大家参考学习,下面来看看详细的介绍:
一、AngularJS的filter过滤器:
- uppercase|lowercase:大小写转换过滤
- json:json格式过滤
- date:日期格式过滤
- number:数字格式过滤
- currency:货币格式过滤
- filter:查找
- limitTo:字符串对象截取
- orderBy:对象排序
Angular基础 将字符串转换为大小写:
姓名为 {{ person.lastName | uppercase }}
姓名为 {{ person.lastName | lowercase }}
货币过滤:
数量: 价格:总价 = {{ (quantity * price) | currency }}
{{250 |currency:"RMB ¥"}}按国家的字母顺序排序对象:
循环对象:
{{jsonText | json}}
- {{ x.name + ', ' + x.country }}
{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss'}}
{{1.2345678 |number:1}}
{{ "i love tank" | limitTo:6 }}
{{ "i love tank" | limitTo:-6 }}
{{ [{"age": 20,"id": 10,"name": "iphone"}, {"age": 12,"id": 11,"name": "sunm xing"}, {"age": 44,"id": 12,"name": "test abc"} ] | orderBy:'id':true }}
{{ [{"age": 20,"id": 10,"name": "iphone"}, {"age": 12,"id": 11,"name": "sunm xing"}, {"age": 44,"id": 12,"name": "test abc"} ] | orderBy:'id' }}按输入的字母显示对象:
输入过滤:
- {{ (x.name | uppercase) + ', ' + x.country }}
name筛选:
{{ [{"age": 20,"id": 10,"name": "iphone"}, {"age": 12,"id": 11,"name": "sunm"}, {"age": 44,"id": 12,"name": "test abc"} ] | filter:{'name':'sunm'} }}
- {{ (x.name | uppercase) + ', ' + x.country }}
二、AngularJs的控制器使用filter
Angular基础 {{uFirstName}}
{{cPrice}}
三、AngularJs自定义filter过滤器
Angular基础 {{welcome | replaceHello}}
{{welcome | replaceHello:3:5}}
{{welcome | rJs}}
var appFilter=angular.module('myApp.filter',[]); //自定义过滤器 appFilter.filter('rJs',function(){ return function(input,n1,n2){ console.log(input); console.log(n1); console.log(n2); return input.replace(/Js/,' javaScript'); } });
总结
以上就是Angular.Js中过滤器filter与自定义过滤器filter实例详解的详细内容,更多请关注易知道|edz.cc其它相关文章!