0
我想做英雄教程中顯示的使用路由器的懶加載angular2模塊。在我的網絡選項卡中,我可以看到的文件越來越下載在我的瀏覽器,但該組件沒有在我的瀏覽器顯示angular2路由器延遲加載不注入組件
//module
@NgModule({
declarations: [
CustomerDashboardComponent
],
exports: [
CustomerDashboardComponent
]
})
export class CustomerDashboardModule {
}
//component code
@Component({
selector: 'customer-dashboard',
templateUrl: 'customer-dashboard/customer-dashboard.html',
})
export class CustomerDashboardComponent extends OnInit{
constructor(private router: Router,
private homeService: HomeService,
private restService: RestService
) {
}
}
我能夠看到模塊和組件在瀏覽器中加載。 –
是的。 loadChildren延遲加載模塊和組件,但由於缺少路由器,因此它未在瀏覽器中顯示。 –