我从事一个有角度的项目。我设置了空路径,但它直接在/ swap组件上重定向,但我不明白为什么。 我这样设置路径: 谢谢您的帮助。 如果您想了解更多信息,请给我打电话:)
const appRoutes: Routes = [
{ path: '', component: AppComponent },
{ path: 'swap', component: SwapComponent}
];
答案 0 :(得分:0)
请尝试这个。...
const appRoutes: Routes =
[
{path: 'app', component: AppComponent },
{path: '', redirectTo: '/app', pathMatch: 'full' },
{ path: 'swap', component: SwapComponent},
];