Angular 2路由器忽略空路由

时间:2017-03-27 15:01:04

标签: angular routing angular2-routing

我的app.routing模块包含以下路线

const routes: Routes = [
{
  path: '',
  component: Path1Component,
  canActivate: [AuthenticatedGuard],
  children: [
  { path: '', component: Path1ChildComponent }
]}];

当应用程序加载时,它会直接转到path1模块,而不是defaultPath。 path1路由模块具有此配置

{{1}}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我将Path1模块导入到app.module中,这在某种程度上导致了问题。当我从app.module中删除它时,路由按预期工作。