gpt4 book ai didi

javascript - Backbone 中的垃圾收集

转载 作者:行者123 更新时间:2023-11-28 02:15:37 28 4
gpt4 key购买 nike

* 已更新 - 为其中一个 View 添加了示例代码 *

这个问题已经讨论过很多次了,我也针对这个主题提出了很多建议,但我仍然没有任何运气。

我的应用程序是基于选项卡的,即用户在全局搜索框中搜索实体,选择实体后会生成 View /模型,并在新选项卡下呈现 View 。用户可以通过重复上述过程来打开多个选项卡.

我面临的问题是每次打开新选项卡时,我都会看到浏览器内存消耗增加约 6 MB(每个选项卡获取和显示的数据最大为 60kb)。

不仅如此,当我关闭一个选项卡时,我可以看到该选项卡下的每个 View 都调用了我的自定义关闭函数(复制如下),但不知何故,浏览器内存并没有下降。对我来说,这意味着垃圾收集不起作用或 View /模型尚未正确清理。

任何帮助将不胜感激。

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;

});

最佳答案

找到问题并解决。

问题是我对所有新选项卡使用了一个全局 Marionette.EventAggregator。这被用作选项卡内各个部分之间的通信方式。现在,当选项卡关闭时,main.js 文件仍然保留对全局通风口的引用,因为其他选项卡仍在使用它。这是对关闭选项卡的引用仍然保留的地方,因此 View /模型没有被GC。

为了解决这个问题,我为每个选项卡创建了一个单独的通风口,并使用该通风口对象触发该选项卡内的任何事件。在选项卡关闭操作中,我取消绑定(bind)所有事件,并将空引用分配给要关闭的选项卡的通风口。

希望这对将来的人有帮助。

关于javascript - Backbone 中的垃圾收集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16443594/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com