不确定我是否做对了所有事情。但问题是:当我从延迟加载的模块导航到组件的某些子路径时,它根本就不会加载。它会从“延迟加载的模块”中重新加载home组件。
app-routing.component.ts
const routes: Routes = [
{path: 'intel', loadChildren: () => import(`./intel/intel.module`).then(m => m.IntelModule)},
{
path: 'planet-detector',
loadChildren: () => import('./planet-detector/planet-detector.module').then((m) => m.PlanetDetectorModule)
},
{path: '', redirectTo: 'space', pathMatch: 'full'},
{path: '**', component: BlackHoleComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
planet-detector-routing.module.ts
const routes: Routes = [
{path: '', component: DetectorComponent, children: [
{ path: 'first', component: FirstChildComponent},
{ path: 'second', component: SecondChildComponent}
]}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PlanetDetectorRoutingModule { }
因此,在上面的示例中,当您放置“'http://localhost:4200/planet-detector/first'时,它将加载DetectorComponent组件而不是FirstChildComponent(URL指向'http://localhost:4200/planet-detector/first')。
我注意到当我将PlanetDetectorRoutingModule更改为:
const routes: Routes = [
{ path: '', component: DetectorComponent },
{ path: 'first', component: FirstChildComponent },
{ path: 'second', component: SecondChildComponent }
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PlanetDetectorRoutingModule { }
然后正常工作。 还有一个问题。这些孩子路线分离的好处是什么?
答案 0 :(得分:2)
当在children属性中声明路由时,这意味着它们应作为该组件的子级呈现。
因此要呈现该路线,<router-outlet>
中必须有一个DetectorComponent
。
子级列出的路由遵循以下规则:
路由器对待这些子路由的方式存在重要差异。
路由器在ParentComponent的RouterOutlet中而不是AppComponent Shell的RouterOutlet中显示这些路由的组件。