在我的 Angular 应用程序中
我有这个路由文件:
const routes: Routes = [
{
path: "",
children: [
{
path: "",
redirectTo: "/my-default-page",
pathMatch: "full"
},
{
path: "reset_password",
component: ResetPassword,
canActivate: [MyAuthGuard],
children: [{ path: "**", redirectTo: "/reset_password" }]
}
]
}
}
];
我不想通过重定向,并且当路由:将是这样的:
/reset_password/blabalabla
它不会重定向我,而只是加载组件 ResetPassword并保持 url 不变
建议?
呼啦一阵风
相关分类