In a template I have the following routerLink:
[routerLink]="['../myObjects', {'id': object.id}, 'mySubObjectsList']"
The routing is ok, but I cannot get the parameter value id in my mySubObjectsList component. _routeParams.params is empty.
I guess this is because the parameter is set to my parent routing component myObjects.
Is there a way to get it in my subcomponent?
Thanks for your help.