我想在刷新页面时重定向默认页面。在刷新页面之前我在这里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});
答案 0 :(得分:0)
使用?redirect=1
这样的查询字符串,只需在brand
页面附加值,根据您的偏好重定向手风琴,然后在下一次重新加载时,然后在品牌组件中重新调整价值这个重定向查询参数如果它是未定义的或设置为零然后让他留在页面上,如果它被设置为1然后将他重定向到主页简单和简单