如何逆序收集订单

时间:2014-04-12 03:24:00

标签: backbone.js

根据按升序创建的日期对集合进行排序。怎么能按降序逆序排序?

var MyCollection = Backbone.Collection.extend({
    urlRoot: '/records',
    comparator: function(model) {
        return new Date(model.get('datecreated')).getTime();
    }
});

1 个答案:

答案 0 :(得分:1)

从比较器返回负值。

comparator: function(model) {
  return -new Date(model.get('datecreated')).getTime();
}