0
Emberの親ルートからの子ルートにどのようにリダイレクトできますか?Emberjsの親ルートから子ルートにリダイレクト
現在、私のrouter.jsは次のとおりです。
Router.map(function() {
this.route('landing-page', { path: '/' });
this.route('users', function() {
this.route('user', {path: ':id'});
this.route('all');
});
});
私はusers
ルートからusers/all
ルートにリダイレクトします。
私はthis.route('users', { path: 'all'}, function() {...
を試してみましたが、動作しません。と表示されます。