我正在尝试使用collection.reset()并且没有得到我期望在UI中获得的结果。响应返回2个结果,这与预期一致。当我检查我的收藏时,它总是告诉我我有2个结果,这也是正确的。
但是,在我的html输出中,它只是将2个新的提取行附加到表中。
initialize: function() {
_.bindAll(this,'buildRows','refreshTable');
this.template = _.template(maintmpl);
this.collection = txnList;
this.collection.bind("all", this.buildRows, this);
this.collection.on("reset", this.refreshTable, this);
this.collection.fetch();
},
events: {
"click #btn" : "refreshTable"
},
render: function() {
this.$el.append( this.template() );
},
refreshTable: function() {
this.collection.reset();
console.log(this.collection.length)
this.collection.fetch();
},
buildRows: function(){
var mainview = this;
_(this.collection.models).each(function(model){
mainview.appendRow(model);
});
},
appendRow: function(model,i) {
var row = txnRow(model);
$('tbody',this.el).append(row.render().el);
}
所以最初,我渲染这个:
ROW1
ROW2
但是每次点击触发refreshTable的按钮时,只需在表中添加2行:
ROW1
行2
ROW1
行2
ROW1
ROW2
我缺少什么?
答案 0 :(得分:0)
backbone collection.reset()方法对视图没有影响。您必须手动使用新数据重新渲染视图。
您的渲染功能会不断追加元素。在调用渲染之前,Backbone不会清除你的$ el,它会把它留给你。
尝试将渲染功能更改为像这样的东西
render: function() {
this.$el.html( this.template() );
},
答案 1 :(得分:0)
看起来你正在清空集合,但没有删除旧的HTML。也许在render()中尝试替换元素的内容而不是附加到它。