http://jsfiddle.net/paultechov/u4naE/
App.Router = Em.Router.extend({
enableLogging: true,
root: Em.Route.extend({
index: Em.Route.extend({
route: '/',
connectOutlets: function(router) {
router.get('applicationController').connectOutlet('application');
}
}),
// why does this work?
goHome: Em.Route.transitionTo('home'),
// ...but not this? Am I missing something?
goHome2: function(router, context) {
router.transitionTo('home', context);
},
home: Em.Route.extend({
route: 'home'
})
})
});
「現在の状態「root.index」にリンクするには、イベント「goHome2」のターゲット状態を指定する必要があります」というエラーが表示されます。
たとえば、false を返して伝播を停止できるように、ここでハンドラーを定義するにはどうすればよいでしょうか? ビューで実際にこれを行う必要がありますか?それはどのように行われますか?
ありがとうございました。