这可能是一些简单的代码,但我不知道原因:
initialize : function(){
this.offSaleCollection = new Collection.ProductsCollection();
this.offSaleCollection.url = '/products';
this.offSaleCollection.on('reset', this.render, this);
this.offSaleCollection.fetch();
// this.offSaleCollection.reset(); if I do this, the event can be triggered.
},
render: function(){
console.log(this.offSaleCollection);
$('#off-sale-tab .badge').html(this.offSaleCollection.length);
}
这就是为什么我无法触发“重置”,所以我无法获得渲染功能。