javascript - Backbone View 删除时不删除根节点时适合怎样处理?
PHP中文网
PHP中文网 2017-04-10 12:46:23
0
1
651

接触到不少场景 View 在删除时会保留根节点, 原生的 .remove() 就不能用了.
临时的方案是增加了一个 .close 方法定义了对应的方法(这样就没事件了)

Backbone.View.prototype.close = function() {
  this.stopListening();
  this.undelegateEvents();
  if (this.onClose) {
    this.onClose();
  }
};

好的办法应该怎样处理 View 保留根节点的移除?


因为 .empty() 当然有时候是需要的, 不过没定义在 .close 里边

PHP中文网
PHP中文网

认证高级PHP讲师

répondre à tous(1)
PHPzhong

不知道理解的对不对

App.Views.BaseView = Backbone.View.extend({
    remove: function() {
      this.$el.empty();
    }
})
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!