I cannot move between child routes.
Router Overview:
path: 'parent', component: parentComponent, children: [ { path: '', redirectTo: 'child1', pathMatch: 'full' }, { path: 'child1', component: child1Component }, { path: 'child2', component: child2Component }, { path: 'new/:type', component: child3Component }, { path: '**', component: PageNotFoundComponent } ]
i is in the component child1, which is trying to jump to a new route / type:
this._router.navigate(['new', objType], { relativeTo: this._route });
But I get an error all the time: it cannot match any routes. Segment URL: "new / asset".
If I manually paste the url, it works fine.
Help will be greatly appreciated, thanks!
source share