空路径将我重定向到其他组件

时间:2019-09-23 17:37:36

标签: angular url path is-empty

我从事一个有角度的项目。我设置了空路径,但它直接在/ swap组件上重定向,但我不明白为什么。 我这样设置路径: 谢谢您的帮助。 如果您想了解更多信息,请给我打电话:)

const appRoutes: Routes = [
  { path: '', component: AppComponent },
  { path: 'swap', component: SwapComponent}
];       

1 个答案:

答案 0 :(得分:0)

请尝试这个。...

const appRoutes: Routes = 
[ 
{path: 'app', component: AppComponent }, 
{path: '', redirectTo: '/app', pathMatch: 'full' },
{ path: 'swap', component: SwapComponent},
];