1

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

这已经讨论了很多次,我已经就这个话题提出了很多建议,但我仍然没有任何运气。

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

我面临的问题是每次打开一个新选项卡时,我都会看到浏览器内存消耗增加了大约 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;

});
4

1 回答 1

1

找到问题并修复。

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

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

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

于 2013-05-16T15:43:48.523 回答