如何将此视图绑定到集合更改事件,以便在将新项目添加到集合时重置?
KAC.Views.ModuleMainNavigation = Backbone.View.extend(
{
tagName: "div",
id: "",
className: "",
template: JST['modules/main_navigation'],
initialize: function() {
_.bindAll(this);
},
events: {
},
render: function () {
this.$el.html(
this.template(
{
collection : this.collection
}
)
);
return this;
}
}
);