7
不要/不要のビューを削除するすべてのバックボーンビューに対して、簡単なclose()
メソッドを実装しました。Backbone.js:親ビューと子ビューでガベージコレクションを実行する方法
Backbone.View.prototype.close = function() {
if (this.onClose) {
this.onClose();
}
this.remove();
this.unbind();
};
NewView = Backbone.View.extend({
el: '#List ul',
initialize: function() {},
render: function() {
_(this.collection.models).each(function(item) {
this.renderChildren(item);
}, this);
},
renderChildren: function(item) {
var itemView = new NewChildView({ model: item });
$(this.el).prepend(itemView.render());
},
onClose: function() {
this.collection.reset();
// I want to remove the child views as well
}
});
NewChildView = Backbone.View.extend({
tagName: 'li',
render: function() {
}
});
親ビューを削除すると、ここですべての子ビューも削除したいと考えています。すべてのアイデアはどのように私はこのようなモデルをループせずにこれを行うことができますすることができます....
_(this.collection.models).each(function(item) {
item.close();
}, this);
+1のおかげでたくさんのDIRAを。 – vikmalhotra