AngularJS orderBy 使用要点总结:数组
1,书写格式函数
基本应用格式为:spa
ng-repeat="item in itemList | orderBy:p1:p2"
参数p1能够是字段名或自定义函数,p2指是否逆序,默认是falsecode
举例:排序
假设$scope中有ci
$scope.itemList=[{id:201,name:'abc',amount:100},{id:100,name:'zdb',amount:100}, {id:10,name:'xxx',amount:200},{id:80,name:'231',amount:1020}, {id:50,name:'ppp',amount:20},{id:1,name:'hhh',amount:1100}];
按照id,倒排序it
1io |
|
2,自定义排序:function
controller中设置自定义函数,函数接受参数为当前的item,须要返回一个数值表明该item的顺序
$scope.orderIt=function(item){ if(item.name.indexOf('h')===0)return 0; return 1; };
使用方法:
ng-repeat="item in itemList | orderBy:orderIt"
3,多字段排序:
若是单个字段排序不能知足需求,那就要祭出绝活了!orderBy还支持多字段排序,方法以下
ng-repeat="item in itemList | orderBy:[orderIt,'name','-amount']
没错,第一个参数传递数组,能够是自定义函数或字段名,字段名前面加“-”,表明倒排序。