要配置懒加载路由,您需要完成以下步骤:
首先,确保您的应用程序使用Angular CLI创建并具有Angular 9版本或更高版本。
在应用程序的路由模块中,将需要懒加载的路由配置为loadChildren
属性。例如,假设我们有一个名为lazy
的模块需要懒加载:
const routes: Routes = [
{ path: 'lazy', loadChildren: () => import('./lazy/lazy.module').then(m => m.LazyModule) }
];
lazy.module.ts
的文件:import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { LazyComponent } from './lazy.component';
@NgModule({
declarations: [LazyComponent],
imports: [
CommonModule,
RouterModule.forChild([
{ path: '', component: LazyComponent }
])
]
})
export class LazyModule { }
RouterModule.forRoot()
。例如,在app.module.ts
中:import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouterModule } from '@angular/router';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
RouterModule.forRoot([
// 其他路由配置
])
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
这样,您就完成了懒加载路由的配置。在浏览器中导航到/lazy
路径时,Angular会自动加载LazyModule
并显示LazyComponent
的内容。