0
的我有一個模型骨幹圖。綁定改變外部模型
此外,我有一個全球性的藏品一些特定應用的東西。
現在,我這個模型的變化事件綁定到我的視圖的渲染方法,但是這似乎並沒有工作。
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);
},
我必須做一些特定的綁定來附加到外部模型的事件嗎?