我们有一个由侧边栏和几个子视图组成的主干视图。为简单起见,我们决定让侧边栏和子视图由单个render
函数管理。但是,click .edit
单击侧边栏项目之一后,该事件似乎多次触发。例如,如果我从“general”开始并单击.edit
,则hello
触发一次。如果我然后单击.profile
侧边栏并.edit
再次单击,则会hello
触发两次。有任何想法吗?
看法
events: {
"click .general": "general",
"click .profile": "profile",
"click .edit": "hello",
},
general: function() {
app.router.navigate("/account/general", {trigger: true});
},
profile: function() {
app.router.navigate("/account/profile", {trigger: true});
},
render: function(section) {
$(this.el).html(getHTML("#account-template", {}));
this.$("#sidebar").html(getHTML("#account-sidebar-template", {}));
this.$("#sidebar div").removeClass("active");
switch (this.options.section) {
case "profile":
this.$("#sidebar .profile").addClass("active");
this.$("#content").html(getHTML("#account-profile-template"));
break;
default:
this.$("#sidebar .general").addClass("active");
this.$("#content").html(getHTML("#account-general-template"));
}
},
hello: function() {
console.log("Hello world.");
},
路由器
account: function(section) {
if (section) {
var section = section.toLowerCase();
}
app.view = new AccountView({model: app.user, section: section});
},
解决方案
我的解决方案是将路由器更改为:
account: function(section) {
if (section) {
var section = section.toLowerCase();
}
if (app.view) {
app.view.undelegateEvents();
}
app.view = new AccountView({model: app.user, section: section});
},
这暂时有效,但这会造成内存泄漏吗?