在Angular 14中,当子路由无法加载时,可能是因为没有正确设置父路由和子路由之间的关系。可以按照下列步骤解决此问题。
const routes: Routes = [ { path: 'parent', component: ParentComponent, children: [ { path: '', redirectTo: 'child', pathMatch: 'full' }, { path: 'child', component: ChildComponent } ]} ];
在该配置中,“parent”是父路由,“child”是子路由,“ParentComponent”和“ChildComponent”是与该路由相关联的组件。
此代码将在单击链接时导航到子路由。
通过遵循上述步骤,您将能够成功加载子路由并为Angular 14应用程序提供更好的用户体验。