주 경로에서 params를 사용하려고합니다. 그러나 실제로 params를 설정되지 않은 그들이 경로에 사용됩니다유성 앱의 주요 경로 (/)에서 params를 사용하려고합니다
Router.go('home'); // it redirects on/=> ok
Router.go('home', {_redirect: test}); // this.path = /test, and this.params is empty
어떻게 내가 PARAMS처럼 _redirect 사용할 수 있습니다 : 지금
Router.map(function funcClientRouterMap(){
this.route('home', {
path: '/:_redirect?',
action: function funcClientRouterMapAction(){
console.log(this.path, this.params);
}
})
});
내가 여기에 수동 리디렉션을하려고하면 내가 무엇을 얻을 경로가 아닌가?
감사
라우터에 다른 경로가 정의되어 있습니까? –
예 경로가 거의 없습니다. 이유가 무엇입니까? – Rebolon