Angular2重定向到默认页面

时间:2016-09-16 04:19:28

标签: angular angular2-routing

我想在刷新页面时重定向默认页面。在刷新页面之前我在这里http://localhost/mypage/#/brand,当我刷新页面时 我想重定向http://localhost/mypage/#/home

const appRoutes: Routes = [
     { path: '', redirectTo: 'home', pathMatch: 'full' },   
     { path: 'home', component: Home },
     { path: 'brand', component: BrandCP },
];

export const appRoutingProviders: any[] = []
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes, { useHash: true});

1 个答案:

答案 0 :(得分:0)

使用?redirect=1这样的查询字符串,只需在brand页面附加值,根据您的偏好重定向手风琴,然后在下一次重新加载时,然后在品牌组件中重新调整价值这个重定向查询参数如果它是未定义的或设置为零然后让他留在页面上,如果它被设置为1然后将他重定向到主页简单和简单