Hi,
I would like to do it in a correct way that case, I would like to get multiple id from the url.
I have that code, but I don't like it.
{path: 'dashboard/:id', component: DashboardComponent},
{path: 'dashboard/:id/:id2', component: DashboardComponent},
{path: 'dashboard/:id/:id2/:id3', component: DashboardComponent},
{path: 'dashboard/:id/:id2/:id3/:id4', component: DashboardComponent},
Any idea about how I can do it in the correct way?
Thanks,
Rafa