我有默认应用程序模板,我在其中插入单独的视图。
<script type="text/x-handlebars">
...default template....
{{view App.LoginView}}
</script>
<script type="text/x-handlebars" data-template-name="login">
<form {{action login on='submit'}}>
...login...
</form>
</script>
我为登录视图设置了视图和控制器
App.LoginView = Ember.View.extend({
templateName: 'login'
});
App.LoginController = Ember.Controller.extend({
actions: {
login: function() {
console.log('test');
}
}
}
);
不幸的是,登录操作没有被发送到,App.LoginController
但它被发送到App.ApplicationController
. 如何获取转发到 App.LoginController 的操作?
这是 jsbin 的链接 - http://jsbin.com/ayAnUJi/6/edit