В моем приложении маршрут выглядит примерно так:
{
path: 'routeA/:paramA',
component: ComponentA,
children: [
{
path: 'routeB/:paramB',
component: ChildComponentB,
children: [
{
path: 'routeC/:paramC',
component: ChildComponentC
}
]
}
]
},
Я пытался:
1:
const param = this.route.paramMap.subscribe(( params: ParamMap ) : void => {
console.info(params)
2:
const params = this.route.firstChild.snapshot.params['codigo-pessoal']
console.info(params)