AngularJS中的自定义排序

时间:2015-10-29 10:17:37

标签: javascript angularjs sorting

我需要对看起来像这样的对象进行排序:

{id: x, startDate:"mm/yyyy", endDate:"mm/yyyy", title:"xxxx", ...}
{id: y, startDate:"mm/yyyy", endDate:"", title:"xxxx", ...}

我希望使用endDate(最近结束的第一个)对对象进行排序。结束日期也可以为空白,在这种情况下,对象仍处于活动状态,需要位于顶部。在结束日期相同的情况下,应按开始日期排序,最近一次。

我不能进行简单的字符串比较,因为10/2013比02/2010更新。因此,比较应该适用于开始和结束日期,年份(date.substring(3,7))和月份(date.substring(0,2))。

修改

我认为我有以下内容:

ng-repeat="project in ProfileController.person.projects|orderBy:dateSorter"

在我的控制器中:

$scope.dateSorter = function(project) {
    return project.endDate.length ? -"9999" : -project.endDate.substring(3,7);
};

通过降序正确排序项目。现在我需要考虑几个月,以及在相同结束日期的情况下开始日期。

2 个答案:

答案 0 :(得分:1)

Working Plunker:http://plnkr.co/edit/fXEzU8s8huS0HGFPDEnI?p=preview

<强> HTML:

<table class="friend">
    <tr>
      <th>Id</th>
      <th><a href="" ng-click="order('startDate', reverse); reverse=!reverse">Start Date</a></th>
      <th><a href="" ng-click="order('endDate',reverse);reverse=!reverse">End Date</a></th>
      <th>Title</th>  
    </tr>
    <tr ng-repeat="item in items"> 
      <td>{{item.id}}</td>
      <td>{{item.startDate | date:'MM-yyyy'}}</td> 
      <td>{{item.endDate }}</td>
      <td>{{item.title }}</td>
    </tr>
  </table>

<强> JavaScript的:

angular.module('myApp', [])
.controller('MyController', function($scope,$filter){      
   var orderBy = $filter('orderBy');         
   $scope.items = [
                  {id: 1, startDate:"02/2010", endDate:"02/2010", title:"Title1"},
                  {id: 2, startDate:"01/2010", endDate:"01/2010", title:"Title2"};
                 ];                  
   $scope.order = function(predicate, reverse) {
       $scope.items = orderBy($scope.items, predicate, reverse);
   };

});

答案 1 :(得分:0)

您可以为Array.prototype.sort()提供比较函数。您应该为其提供一个实现订购规范的功能,如下所示:

function mmYyyyToDate(mmYyyy) {
    return new Date(mmYyyy.substring(3,7), mmYyyy.substring(0, 2))
}

function compares(a, b) {
    if (a.endDate && b.endDate) {
        var aEndDate = mmYyyyToDate(a.endDate);
        var bEndDate = mmYyyyToDate(b.endDate);
        return aEndDate == bEndDate ? 0 : aEndDate < bEndDate ? -1 : 1
    } else if (a.endDate) { return -1; }
    } else if (b.endDate { return 1; }
    } else {
        var aStartDate = mmYyyyToDate(a.startDate);
        var bStartDate = mmYyyyToDate(b.startDate);
        return aStartDate == bStartDate ? 0 : aStartDate < bStartDate ? -1 : 1;
    }
}

如果您需要对数组进行排序以进行显示,或者只是在控制器中调用它或提供服务(如果您希望数据始终排序),则可以在过滤器中实现该功能。