我试图从我对Ember的观点中调用我的控制器的动作,但它说:
Uncaught TypeError: Cannot call method 'send' of null
我找不到在ember中使用视图的正确方法。
我的视图布局有一个调用:
<button type="button" {{action modalConfirmation target="view"}} class="btn btn-primary">Save changes</button>
我的View类尝试以这种方式调用控制器:
this.get('controller').modalConfirmation();
我的控制器有这样的东西:
ProjEmber.BananasIndexController = Ember.ArrayController.extend({
actions: {
showModal: function() {
modalinaView.title = "My Title";
modalinaView.templateName = "any_template_you_wish";
modalinaView.append();
},
modalConfirmation: function() {
console.debug('Action modalConfirmation');
}
}
});
OBS:如果我使用这样的帮助器附加我的视图,它会起作用:
{{#view ProjEmber.ModalinaView title='A title'}}
A not so good application of a modal view. Just for the sake of illustration.
{{/view}}
您可以在Github上看到完整的源代码,特别是提交的这一部分: https://github.com/lucaspottersky/ember-lab/commit/4862426b39adc0bbcce0b4cc3fd0099439f8dd55#commitcomment-4421854