单击路由器链接后,结果不显示,并保持side-nav-bar

时间:2019-06-05 05:39:16

标签: angular7 angular-material2 sidenav

在我的应用程序中,我有一些处于工作模式的侧面导航栏。还有一些子事件。现在,如果我单击其中一个子事件,则所有记录都可以正常显示。现在,有些记录必须呈现为更详细的结果。当我单击链接侧时,将显示导航栏,但没有结果显示出来。它显示白页。 我也收到以下错误:

"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] }
]
}
];

我想用导航栏查看结果。

0 个答案:

没有答案