在下面的代码中,我渲染了 3 个视图。第二个和第三个视图渲染App.controller.a
。单击第一个视图会发生变化App.controller.a
。单击时,第三个视图会更新其内容。第二个视图不更新其内容。为什么?
我假设第二个视图绑定到数组App.controller.a
。看起来绑定没有更新。
演示:http: //jsfiddle.net/kcmH4/
编码:
App = Ember.Application.create({});
App.controller = Ember.Object.create({
a: Ember.A([1]),
my_method: function() {
var a = this.get('a');
$.each([2], function(i, element) {
a.pushObject(element);
});
}
});
App.MyView = Ember.View.extend({
click: function() {
this.get('content').my_method();
}
});
模板:
{{#view App.MyView contentBinding="App.controller"}}
First view: Click me
{{/view}}
{{#view Ember.View contentBinding="App.controller"}}
2nd view: {{content.a}}
{{/view}}
{{#view Ember.View contentBinding="App.controller"}}
Third view:
<ul>
{{#each content.a}}
<li>{{this}}</li>
{{/each}}
</ul>
{{/view}}