フィードバックを得るために、バインド/非バインド ビューの次のスニペットを共有したいと思います。どんな提案でも大歓迎です。
Yn.UnboundView = Em.View.extend({
item: null,
didInsertElement: function() {
this._super();
this.$().text( this.get('item') );
}
});
Yn.BoundView = Em.View.extend({
item: null,
render: function(buffer) {
buffer.push( this.get('item') );
},
_itemDidChange: Ember.observer(function() {
this.rerender();
}, 'item')
});