окна.
При клике по одной из строк таблицы делаю router.navigate([this._router.url, entityId]); и передаю параметр ID.
В routing.ts вот так:
`path: '',
component: VideoSurveillanceDesktopComponent,
children: [
{ path: '', redirectTo: 'camera-list', pathMatch: 'full' },
{
path: 'camera-list',
component: CameraListDesktopComponent,
children: [
{ path: 'new', component: CameraListDesktopComponent },
{ path: ':id', component: CameraListDesktopComponent }
]
}`
те я всегда ссылаюсь на один и тот же компонент.
При перезагрузке страницы (f5) как мне правильно отловить параметр ID из урла, парсить каждый раз в конструкторе компонента?
https://angular.io/tutorial/toh-pt5#extract-the-id-route-parameter
Обсуждают сегодня