typescript 导航到根路由“/”
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 
原文地址: http://stackoverflow.com/questions/40790307/
Warning: these are provided under cc-by-sa 4.0 license.  You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Navigate to root route "/"
提问by koech
I am trying to navigate to home route from a child route but nothing happens.
我试图从子路线导航到家庭路线,但没有任何反应。
I.e. the current route is /projects
即当前路线是 /projects
Neither this.router.navigate(['/'])nor routerLink="/"works.
既不工作this.router.navigate(['/'])也不行routerLink="/"。
My routerConfiglooks like this
我的routerConfig看起来像这样
const routes: Routes = [
 {
   path: '',
   component: HomeComponent
 },
 {
   path: '/projects',
   component: ProjectsComponent
 }
]
How do I go about doing this?
我该怎么做?
回答by wuno
Try adding a redirectToroute to your routes config:
尝试redirectTo在你的路由配置中添加一条路由:
const routes: Routes = [
    { path: '', redirectTo: 'home', pathMatch: 'full' },
    { path: 'home', component: HomeComponent },
    { path: 'projects', component: ProjectsComponent }
];

