在我的应用程序中,我有一些处于工作模式的侧面导航栏。还有一些子事件。现在,如果我单击其中一个子事件,则所有记录都可以正常显示。现在,有些记录必须呈现为更详细的结果。当我单击链接侧时,将显示导航栏,但没有结果显示出来。它显示白页。 我也收到以下错误:
"core.js:15724 ERROR Error: Uncaught (in promise): TypeError: Cannot read property 'unsubscribe' of undefined"
如果我将路径放在app-routing.modules.ts中,则记录即将到来,但side-nav-bar不会到来。 当前方案:
app-roting.modules.ts
{ path: '', component: SidenavComponent, canActivate: [AuthGuard], children: [
{ path: 'X', loadChildren: './X/X.module#XModule'}
]
}
Inside component_routing.module.ts
const routes: Routes = [
{ path: '',
children: [
{ path: 'view-x', component: XViewComponent, canActivate: [AuthGuard]},
{ path: 'details-x', component: XDetailsComponent, canActivate: [AuthGuard] }
]
}
];
我想用导航栏查看结果。