Custom order using orderBy in ng-repeat

喜夏-厌秋 提交于 2019-11-28 18:51:07
sylwester

Hi you can create custom sort filter please see here http://jsbin.com/lizesuli/1/edit

html:

  <p ng-repeat="s in students |customSorter:'class'">{{s.name}} - {{s.class}} </p>
      </div>

angularjs filter:

app.filter('customSorter', function() {

  function CustomOrder(item) {
    switch(item) {
      case 'A_Class':
        return 2;

      case 'B_Class':
        return 1;

      case 'C_Class':
        return 3;
    }  
  }

  return function(items, field) {
    var filtered = [];
    angular.forEach(items, function(item) {
      filtered.push(item);
    });
    filtered.sort(function (a, b) {    
      return (CustomOrder(a.class) > CustomOrder(b.class) ? 1 : -1);
    });
    return filtered;
  };
});

Know this is old but may come in handy for others...

You could also create a simple custom sort function. "Not quite a filter":

$scope.customOrder = function (item) {
        switch (item) {
            case 'A_Class':
                return 2;

            case 'B_Class':
                return 1;

            case 'C_Class':
                return 3;
        }
    };

And then use like you wanted to:

<table>
<tr ng-repeat="student in students | orderBy:customOrder">
...
</tr>

to set the orderBy as a property of the objects just quote that property name within the markup:

ng-repeat="student in students |orderBy:'name' | orderBy:'class'"

DEMO

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!