我有一个观点,每次调用都会重新渲染视图中的元素,这是一段代码:
Project.Views.CheckinScheduledView = Backbone.View.extend({
tagName: 'div',
id:'CheckinScheduledView',
className:'section',
checkinsHtml: '',
initialize: function() {
_.bindAll(this);
this.checkinsCollections = new Project.Collections.Checkins();
this.checkinsCollections.on('reset', this.render);
this.checkinsCollections.fetch();
},
events: {
'click .scheduled_checkin a':'deleteCheckin'
},
render: function() {
var that = this;
// HERE IS THE PROBLEM
if($('li.scheduled_checkin').length) {
$('li.scheduled_checkin').each(function() {
$(this).css('display','none').empty().remove();
});
}
if(Project.InfoWindow.length) {
Project.InfoWindow[0].close();
}
_.each(this.checkinsCollections.models, function(item) {
that.renderLocation(item);
});
$(this.el).html(this.template());
this.renderCheckins();
return this;
},
refreshData: function() {
this.checkinsCollections.fetch();
}
这是一个案例:
- 打开主页
- 点击checkIn(当前查看代码)
- 回家
- 视图渲染但将项目添加到列表中
图片
我第一次加载视图
假设我去另一个视图,现在我回到这个视图
然后再次 :(