目前我正在处理我的backbone.js 应用程序中的僵尸。我已经阅读了这篇关于僵尸的优秀文章http://lostechies.com/derickbailey/2011/09/15/zombies-run-managing-page-transitions-in-backbone-apps/并扩展了我的项目:
Backbone.View.prototype.close = function(){
this.remove();
this.unbind();
if (this.onClose){
this.onClose();
}
}
我的问题是,如何恢复这个关闭过程?我可以只在对象上调用渲染,还是必须通过用新实例覆盖它来重新启动对象?