Angular 2 : Circular Feature module dependency
问题 I am currently working on one of application of Angular2. I have 3 feature modules in it which contains other sub feature modules. I want to load Sub feature module of Feature 1 into Sub Feature module of Feature 2 and vice a versa. below is sample code. action-routing.module.ts const routes: Routes = [ { path: '', component: ActionComponent, children: [ { path: ':id', loadChildren: 'app/action/action-detail/action-detail.module#ActionDetailModule' } ] } ]; action-detail-routing.module.ts