码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS orderBy 使用要点

时间:2015-05-07 12:16:57      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

AngularJS orderBy 使用要点总结:

  1,书写格式

基本应用格式为:

ng-repeat="item in itemList | orderBy:p1:p2"

参数p1可以是字段名或自定义函数,p2指是否逆序,默认是false

举例:

假设$scope中有

var 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,倒排序

ng-repeat="item in itemList | orderBy:‘id‘:true"

    2,自定义排序:

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‘]

没错,第一个参数传递数组,可以是自定义函数或字段名,字段名前面加“-”,代表倒排序。

 

AngularJS orderBy 使用要点

标签:

原文地址:http://www.cnblogs.com/dajianshi/p/4484237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!