Я могу изо всех сил пытаться сформулировать проблему, но у меня есть StackBlitz, чтобы помочь.
https://stackblitz.com/edit/angular-brhyir
Обратите внимание на ленивую загрузку "пользователей" ...
app.routes.ts
//import { NgModule } from '@angular/core';
import { Routes } from '@angular/router';
import { SecureComponent } from './layouts/secure.component';
import { HelloComponent } from './hello.component';
//SECURE
export const SECURE_ROUTES: Routes = [
{ path: '',
component: HelloComponent,
data: {
}
},
//Lazyloading
{ path: 'users',
data: {
breadcrumb: 'Users',
},
loadChildren: './users/user.module#UserModule' }
];
export const routes: Routes = [
{ path: '', component: SecureComponent, data: { title: 'Secure Views' },
children: SECURE_ROUTES },
];
это работает, но ...
user.routes. ц
import { Routes } from '@angular/router';
import { UsersComponent } from './users.component';
import { UserComponent } from './user/user.component';
import { UserTwoComponent } from './user/user-two.component';
export const UserRoutes: Routes = [
{ path: '',
component: UsersComponent,
children: [
{
path: 'user',
component: UserComponent,
data: {
breadcrumb: 'New'
},
children: [
{
path: 'user2',
component: UserTwoComponent,
data: {
breadcrumb: 'New2'
}
}
]
}
]
}
];
Так что, если вы нажмете кнопки, вы увидите проблему. То есть, маршрут правильный (пользователи / пользователи), НО он НЕ загружает 'UserComponent', вместо этого он все еще показывает 'User s Component'. Почему я не знаю?