model change通常、イベントをrender function次のようにバインドします。
initialize: function() {
this.model.bind('change', this.render, this);
}
model changeイベントをバインドする方法render function with parameter:
render: function(templ) {
this.$el.html(templ);
}
initialize: function() {
// ?
}