Angular Child Route not changing
问题 I am designing a website with angular4, and have a component that inside uses the @angular/material sidenav. Within that sidenav i have <router-outlet></router-outlet> . my app.module has all the necessary imports and declarations, I have a app-routing module that contains the following code for the component: const appRoutes: Routes = [ { path: 'reg', component: RegComponent, children: [ { path: ':info', component: RegInfoComponent }, { path: ':ther', component: RegTherComponent } ]}, ]; I