* 更新 - 为其中一个视图添加了示例代码 *
这已经讨论了很多次,我已经就这个话题提出了很多建议,但我仍然没有任何运气。
我的应用程序是基于选项卡的,即用户在全局搜索框中搜索实体,并在选择实体时生成视图/模型并在新选项卡下呈现视图。用户可以通过重复上述过程打开多个选项卡。
我面临的问题是每次打开一个新选项卡时,我都会看到浏览器内存消耗增加了大约 6 MB(每个选项卡获取和显示的数据最大为 60kb)。
不仅如此,当我关闭一个选项卡时,我可以看到该选项卡下的每个视图都调用了我的自定义关闭函数(复制如下),但不知何故,浏览器内存不会下降。这对我来说意味着垃圾收集不工作或视图/模型没有被正确清理。
任何帮助将不胜感激。
define([
"hbs!modules/applications/templates/applications",
"vent"
],
function (tpl, vent) {
var View = Backbone.Marionette.ItemView.extend({
className: 'modApplications',
template: {
type: 'handlebars',
template: tpl
},
refresh: function(){
self.$('.body-of-table').css('visibility', 'hidden');
self.$('.application-panel .spinnerDiv').addClass('loading');
this.model.fetch().always(function(){
self.$('.application-panel .spinnerDiv').removeClass('loading');
});
},
initialize: function(){
this.model.on('change', this.render, this);
vent.bindTo(vent, 'updateApplications', this.refresh, this);
},
onShow: function(){
var self = this;
this.$el.on('click', '.action-refresh', function(e) {
self.refresh();
e.preventDefault();
});
},
close: function() {
_.each(this.bindings, function (binding) {
binding.model.unbind(binding.ev, binding.callback);
});
this.bindings = [];
this.unbind();
this.off();
this.model.off('change');
this.model.unbind('change', this.render, this);
this.remove();
delete this.$el;
delete this.el;
if(console) console.log("kill : view.applications");
}
});
return View;
});