查找当前页的url
$window.location
Filter是用来格式化数据用的。
Filter的基本原型( '|' 类似于Linux中的管道模式):
{{ expression | filter }}
Filter可以被链式使用(即连续使用多个filter):
{{ expression | filter1 | filter2 | ... }}
Filter也可以指定多个参数:
{{ expression | filter:argument1:argument2:... }}
内置的过滤器
货币 默认是美元符号$,想要变成其他的如人民币¥
HTML:{{ currency_expression | currency:symbol:fractionSize}}
JS:$filter(“currency”)(amount,symbol,fractionSize);
<!--html代码-->
{{ 12 | currency}} <!--将12格式化为货币,默认单位符号为 '$', 小数默认2位-->
{{ 12.45 | currency:'¥'}} <!--将12.45格式化为货币,使用自定义单位符号为 '¥', 小数默认2位-->
{{ 12.45 | currency:'CHY¥':1}} <!--将12.45格式化为货币,使用自定义单位符号为 'CHY¥', 小数指定1位, 会执行四舍五入操作 -->
{{ 12.55 | currency:undefined:0}} <!--将12.55格式化为货币, 不改变单位符号, 小数部分将四舍五入 -->
date格式化
HTML:{{date_expression | date:format:timezone}}
JS:$filter(“date”)(date,format,timezone);
<!--使用ISO标准日期格式 -->
{{ '2016-12-12T03:56:16.887Z' | date }} //结果:Dec 12, 2016
{{ 2016/12/12 | date:"yyyy-MM-dd hh:mm:ss" }} //结果:2016-12-12 06:39:08
<!--使用13位(单位:毫秒)时间戳 -->
{{ 1432075948123 | date:"MM/dd/yyyy @ h:mma" }} //结果:12/12/2016 @ 6:39AM
<!--指定timezone为UTC -->
{{ 1432075948123 | date:"MM/dd/yyyy @ h:mma":"UTC"}}
number格式化 如果输入是null或undefined,那么其将被返回。如果输入的是无穷(正无穷/负无穷),将会返回无穷大的符号“∞”。如果输入不是一个数字,返回一个空字符串。
HTML:{{number_expression | number:fractionSize}}
JS:$filter(“number”)(number,fractionSize);
{{ 1.234567 | number:1 }} //结果:1.2
{{ 1234567 | number }} //结果:1,234,567
filter过滤数组
HTML:{{filter_expression | filter:expression:comparator}}
JS:$filter(“filter”)(array,expression,comparator);
<!--用法1(参数expression使用String)-->
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | filter:'s'}} //查找含有有s的行
//上例结果:[{"age":12,"id":11,"name":"sunm xing"},{"age":44,"id":12,"name":"test abc"}]
<!--用法2(参数expression使用object)-->
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | filter:{'name':'iphone'} }} //查找name为iphone的行
//上例结果:[{"age":20,"id":10,"name":"iphone"}]
<!--用法3(参数expression使用function)-->
// 先在Controller中定义function: myFilter
$scope.myFilter = function (item) {
return item.age === 20;
};
<div ng-repeat="u in myArr | filter:myFilter ">
<p>Name:{{u.name}}</p>
<p>Age:{{u.age}}</p>
<br />
</div>
<!--用法4(指定comparator为true或false)-->
<div ng-init="myArr = [{name:'Tom', age:20}, {name:'Tom Senior', age:50}, {name:'May', age:21}, {name:'Jack', age:20}, {name:'Alice', age:22}]">
Name:<input ng-model="yourName" />
<!-- 指定comparator为false或者undefined,即为默认值可不传,将以大小写不敏感的方式匹配任意内容 --> <!-- 可以试试把下面代码的comparator为true,true即大小写及内容均需完全匹配 -->
<div ng-repeat="u in myArr | filter:{name:yourName}:false ">
<p>Name:{{u.name}}</p>
<p>Age:{{u.age}}</p>
<br />
</div>
</div>
<!--用法5(指定comparator为function-->
// 先在Controller中定义function:myComparator, 此function将能匹配大小写不敏感的内容,但与comparator为false的情况不同的是,comparator必须匹配全文
$scope.myComparator = function (expected, actual) {
return angular.equals(expected.toLowerCase(), actual.toLowerCase());
}
<div ng-init="myArr = [{name:'Tom', age:20}, {name:'Tom Senior', age:50}, {name:'May', age:21}, {name:'Jack', age:20}, {name:'Alice', age:22}]">
Name:<input ng-model="yourName" />
<div ng-repeat="u in myArr | filter:{name:yourName}:myComparator ">
<p>Name:{{u.name}}</p>
<p>Age:{{u.age}}</p>
<br />
</div>
</div>
limitTo字符串 对象的截取;创建一个只包含指定数目元素的数组或字符串。元素是按指定的值和符号(+或-)从数组、字符串或数字的开头或结尾获取的。如果输入一个数字,则转换为字符串。
HTML:{{limitTo_expression | limitTo:limit:begin}}
JS:$filter(“limitTo”)(input,limit,begin);
{{ "i love laiyit" | limitTo:6 }} //结果:i love
{{ "i love laiyit" | limitTo:-4 }} //结果:iyit
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | limitTo:1 }} //结果:[{"age":20,"id":10,"name":"iphone"}]
uppercase,lowercase大小转换
HTML:{{lowercase_expression | lowercase}}
JS:$filter(“lowercase”)(input);
<!--html代码-->
{{ "lower cap string" | uppercase }} //结果:LOWER CAP STRING
{{ "LAIYIT is BEAUTIFUL" | lowercase }} //结果:laiyit is beautiful
<!--js代码-->
$scope.filteredText = $filter('uppercase')($scope.originalText);
json格式化
HTML:{{json_expression | json:spacing}}
JS:$filter(“json”)(object,spacing);
{{ {foo: "bar", baz: 23} | json }} //结果:{ "foo": "bar", "baz": 23 }
orderBy对象排序 通过判断表达式将指定的数组进行排序。它是按字符串的字母顺序和数值的数字排序的。
注意:如果你发现数字没有按预期排序,请确保它们实际上是被保存为数字而不是字符串。
HTML:{{orderBy_expression | orderBy:expression:reverse}}
JS:$filter(“orderBy”)(array,expression,reverse);
<!--deposit前面的'-'表示deposit这列倒叙排序,默认为顺序排序 3 参数reverseOrder:true表示结果集倒叙显示-->
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | orderBy:['id', '-deposit']:true }} //根id降序排
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | orderBy:'id':true }} //根id降序排
{{ [{"age": 20,"id": 10,"name": "iphone"},
{"age": 12,"id": 11,"name": "sunm xing"},
{"age": 44,"id": 12,"name": "test abc"}
] | orderBy:'id' }} //根据id升序排
自定义过滤器
在filter.js中定义一个module
angular.module('laiyittest', []).filter('laiyitreplace', function() {
return function(input) {
return input.replace(/laiyit/, "***")
};
});
在app.js中加载这个module
var phonecatApp = angular.module('phonecatApp', [
'ngRoute',
'phonecatControllers',
'facebookControllers',
'laiyittest'
]);
在html中调用
{{ "laiyit is GOOD" | lowercase | laiyitreplace}} //结果:*** is good
网友评论