• 延迟加载模块

    延迟加载模块

    使用模块将我们的应用的相关功能分组的另一个优点是能够按需加载那些片段。 延迟加载模块有助于减少启动时间。 通过延迟加载,我们的应用程序不需要立即加载所有内容,它只需要加载用户期望第一次加载时看到的内容。 延迟加载的模块只会在用户导航到其路由时加载。

    为了显示这种关系,让我们开始定义一个简单的模块,作为我们的示例应用程序的根模块。

    app/app.module.ts

    1. import { NgModule } from '@angular/core';
    2. import { BrowserModule } from '@angular/platform-browser';
    3. import { AppComponent } from './app.component';
    4. import { EagerComponent } from './eager.component';
    5. import { routing } from './app.routing';
    6. @NgModule({
    7. imports: [
    8. BrowserModule,
    9. routing
    10. ],
    11. declarations: [
    12. AppComponent,
    13. EagerComponent
    14. ],
    15. bootstrap: [AppComponent]
    16. })
    17. export class AppModule {}

    到目前为止,这是一个非常常见的模块,依赖于BrowserModule,有一个路由机制和两个组件:AppComponentEagerComponent。 现在,让我们专注于定义导航的应用程序(AppComponent)的根组件。

    app/app.component.ts

    1. import { Component } from '@angular/core';
    2. @Component({
    3. selector: 'app-root',
    4. template: `
    5. <h1>My App</h1>
    6. <nav>
    7. <a routerLink="eager">Eager</a>
    8. <a routerLink="lazy">Lazy</a>
    9. </nav>
    10. <router-outlet></router-outlet>
    11. `
    12. })
    13. export class AppComponent {}

    我们的导航系统只有两条路: eagerlazy。 要知道当点击它们时加载哪些路径,我们需要看看我们传递给根模块的路由对象。

    app/app.routing.ts

    1. import { ModuleWithProviders } from '@angular/core';
    2. import { Routes, RouterModule } from '@angular/router';
    3. import { EagerComponent } from './eager.component';
    4. const routes: Routes = [
    5. { path: '', redirectTo: 'eager', pathMatch: 'full' },
    6. { path: 'eager', component: EagerComponent },
    7. { path: 'lazy', loadChildren: 'lazy/lazy.module#LazyModule' }
    8. ];
    9. export const routing: ModuleWithProviders = RouterModule.forRoot(routes);

    这里我们可以看到,在我们的应用程序中的默认路径叫做eager ,它将加载EagerComponent

    app/eager.component.ts

    1. import { Component } from '@angular/core';
    2. @Component({
    3. template: '<p>Eager Component</p>'
    4. })
    5. export class EagerComponent {}

    但更重要的是,我们可以看到,每当我们试图去lazy的路径,我们会懒加载一个模块,方便地称为LazyModule 。 仔细观察那条路由的定义:

    1. { path: 'lazy', loadChildren: 'lazy/lazy.module#LazyModule' }

    这里有几个重要的事情要注意:

    1. 我们使用属性loadChildren而不是component
    2. 我们传递一个字符串而不是一个符号,以避免加载模块。
    3. 我们不仅定义了模块的路径,还定义了类的名称。

    除了它有自己的路由和一个名为LazyComponent的组件,LazyModule没有什么特别的。

    app/lazy/lazy.module.ts

    1. import { NgModule } from '@angular/core';
    2. import { LazyComponent } from './lazy.component';
    3. import { routing } from './lazy.routing';
    4. @NgModule({
    5. imports: [routing],
    6. declarations: [LazyComponent]
    7. })
    8. export class LazyModule {}

    如果我们定义类LazyModule作为文件的默认导出,我们不需要在loadChildren属性中定义类名称,如上所示。

    routing 对象非常简单,只定义导航到lazy路径时加载的默认组件。

    app/lazy/lazy.routing.ts

    1. import { ModuleWithProviders } from '@angular/core';
    2. import { Routes, RouterModule } from '@angular/router';
    3. import { LazyComponent } from './lazy.component';
    4. const routes: Routes = [
    5. { path: '', component: LazyComponent }
    6. ];
    7. export const routing: ModuleWithProviders = RouterModule.forChild(routes);

    注意,我们使用方法调用forChild而不是forRoot来创建路由对象。 我们应该在为特征模块创建路由对象时始终这样做,无论模块应该是eagerly 还是 lazily加载。

    最后,我们的LazyComponent非常类似于EagerComponent,并且只是一些文本的占位符。

    app/lazy/lazy.component.ts

    1. import { Component } from '@angular/core';
    2. @Component({
    3. template: '<p>Lazy Component</p>'
    4. })
    5. export class LazyComponent {}

    View Example

    当我们第一次加载应用程序时,AppComponent中的AppModule将在浏览器中加载,我们应该看到导航系统和文本“Eager Component”。 直到这一点,LazyModule没有被下载,只有当我们点击链接“Lazy”所需的代码将被下载,我们将在浏览器中看到消息“Lazy Component”。

    我们有效地延迟加载了一个模块。