我在我的 Backbone.Collection 中定义了比较器。
当我将模型添加到该集合时,我应该调用 sort 方法吗?
this.collection.add(this.newModel);
this.collection.sort(); // should I add this line?
根据文档不是,但我的应用程序似乎需要它。任何的想法?
我添加了jsfiddle ..但我还有另一个问题...知道如何解决它吗?
我在我的 Backbone.Collection 中定义了比较器。
当我将模型添加到该集合时,我应该调用 sort 方法吗?
this.collection.add(this.newModel);
this.collection.sort(); // should I add this line?
根据文档不是,但我的应用程序似乎需要它。任何的想法?
我添加了jsfiddle ..但我还有另一个问题...知道如何解决它吗?
不,当您从比较器函数返回对象时使用负号。这是对元素进行排序的另一种方法。
//Model
comparator: function(activity){
var date = new Date(activity.get('created_at'));
return -date.getTime();
}
//View
events : {
'click .refresh' : 'refresh',
'click .reverse' : 'reverse'
},
refresh : function() {
this.collection.fetch();
console.log('refresh', this.collection);
this.render();
},
reverse : function() {
var $ref = $(".notifyRefresh");
console.log("you clicked reverse");
console.log(this.collection, "collection");
this.collection.sort();
}