我正在开发一个显示表单和用户列表的应用。 我试图通过2个按钮延迟加载这两个模块,但组件不加载。 我可以在google开发人员工具的网络选项卡中看到 form.module.chunk.js 和 people.module.chunk.js ,因此正在加载模块。 我没有/ form或/ people中的任何子文件夹,如果这可能是问题
应用路由-module.ts
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { MenuComponent } from './menu/menu.component';
const routes: Routes = [
{
path: 'people',
loadChildren: 'app/people/people.module#PeopleModule'
},
{
path: 'form',
loadChildren: 'app/form/form.module#FormModule'
},
{ path: 'menu', component: MenuComponent },
{ path: '', redirectTo: '/menu', pathMatch: 'full' }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
然后在模块本身中我声明了组件
declarations: [PeopleComponent]
最后这是路由模块的代码
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { PeopleComponent } from './people.component';
const routes: Routes = [
{
path: '',
component: PeopleComponent
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PeopleRoutingModule { }
我会对任何建议感到高兴
答案 0 :(得分:0)
这是你app.module.ts
,我还包括这个路由。
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RouterModule, Routes, ActivatedRoute, ParamMap } from '@angular/router';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
export const ROUTES: Routes = [
{ path: '', component: HomeComponent, pathMatch: 'full' },
{ path: 'people', loadChildren: 'app/people/people.module#PeopleModule' },
{ path: '**', redirectTo: ''}
];
@NgModule({
declarations: [
AppComponent,
HomeComponent
],
imports: [
BrowserModule,
RouterModule.forRoot(ROUTES),
FormsModule,
HttpModule,
HttpClientModule
],
providers: [ /*services*/ ],
bootstrap: [AppComponent]
})
export class AppModule { }
否定义人员模块时,不在AppModule中包含PeopleComponent,而在PeopleModule中包含
import { NgModule, ApplicationRef, APP_BOOTSTRAP_LISTENER, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { APP_BASE_HREF, CommonModule } from '@angular/common';
import { Http, HttpModule } from "@angular/http";
import { RouterModule } from '@angular/router';
import { FormsModule } from '@angular/forms';
import { PeopleComponent } from './people.component';
@NgModule({
declarations: [
PeopleComponent
],
imports: [
CommonModule,
FormsModule,
HttpModule,
RouterModule.forChild([
{ path: '', component: PeopleComponent }
])
],
providers : [
//add services and other providers
],
schemas: [ NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA ]
})
export class PeopleModule { }
同样适用于所有延迟加载的模块。请参阅我的另一个答案RangeError: Maximum call stack size exceeded Angular 5 Router
对于您在评论中提到的错误:从FormComponent
AppModule