如何在使用angular2中的參數的子路由的情況下使用redirectTo
。我的路由結構,這樣對於子路由,在angular2中的redirectTo
const appRoutes: Routes = [
{ path: '', redirectTo : '/home', pathMatch: 'full'},
{ path: 'home', component: HomeComponent},
{ path: 'xyz/:id', component: XYZ },
{
path: 'abc/:id', component: ABC,
children: [
{ path: '', redirectTo : 'def', pathMatch: 'prefix' },
{ path: 'def/:id', component: DEF }
]
}
]
但它不工作
還,什麼是路由pathMatch
?
對不起,但在我的情況下'ID'是不一樣的;)現在該做什麼? –