モデル付きのバックボーンビューがあります。
さらに、アプリケーション固有のものを保持するグローバルモデルがあります。
このモデルのchangeイベントをビューのrenderメソッドにバインドしていますが、これは機能していないようです。
model: new Preferences.Item(),
render: function() {
$(that.el).html(template(that.model.toJSON()));
},
initialize : function() {
this.render = _.bind(this.render, this);
// global account model holder
App.Storage.account.bind("change", this.render);
},
外部モデルのイベントにアタッチするには、特定のバインディングを実行する必要がありますか?