Angular: ActivatedRoute minimal example
For this route:
{path: 'my/:id', component: MyDashboardComponent},
this is how you can use it in MyDashboardComponent
:
constructor(private route: ActivatedRoute) {
this.route.params.subscribe(params => {
console.info(params.id);
})
}