2
在新的Angular2路由器中使用默認子狀態的正確方法是什麼?使用Angular2中的路由器將狀態重定向到默認子狀態
例如我想路由器
/user
重定向到
/user/profile
如用戶狀態的默認子狀態。
在新的Angular2路由器中使用默認子狀態的正確方法是什麼?使用Angular2中的路由器將狀態重定向到默認子狀態
例如我想路由器
/user
重定向到
/user/profile
如用戶狀態的默認子狀態。
您可以使用redirectTo,如下所示。
當用戶試圖瀏覽到www.domain.com/user因爲redirectTo,他將被重定向到www.domain.com/user/profile。
import { Routes,RouterModule } from '@angular/router';
let routes: Routes = [
{ path: '/user', redirectTo: '/user/profile', pathMatch: 'full'},
{ path: '/user/profile', component:somecomponent },
];
export const routing = RouterModule.forRoot(routes);
感謝您的快速響應! –
不客氣! – micronyks