Я новичок в угловых и гуглил часами, чтобы найти решение на ленивом маршруте.https://stackblitz.com/edit/angular-7jmk87
app-routing.module.ts
const routes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: HomeComponent},
{ path: 'customers', loadChildren: './pages/customers/customers.module#CustomersModule' }
];
customer-routing.module.ts
const routes: Routes = [
{
path: '',
component: CustomersComponent,
},
{ path: 'detail', component: CustomerDetailComponent },
];
я хочу перенаправить на /customers/detail
с /customers
, но он возвращает ошибку типа Cannot match any routes. URL Segment: 'detail'
.Я следую некоторым примерам, но это еще не решено.Я надеюсь, что кто-то может помочь мне.Спасибо.