Angular.js实现动态加载组件详解
前言
有时候需要根据URL来渲染不同组件,我所指的是在同一个URL地址中根据参数的变化显示不同的组件;这是利用Angular动态加载组件完成的,也会设法让这部分动态组件也支持AOT。
动态加载组件
狼蚁网站SEO优化以一个Step组件为示例,完成一个3个步骤的示例展示,并且可以通过URL user?step=step-one
的变化显示第N个步骤的内容。
1、resolveComponentFactory
,还是需要先创建动态加载组件模块。
import { Component, Input, ViewContainerRef, ComponentFactoryResolver, OnDestroy, ComponentRef } from '@angular/core'; @Component({ selector: 'step', template: `` }) export class Step implements OnDestroy { private currentComponent: ComponentRef<any>; constructor(private vcr: ViewContainerRef, private cfr: ComponentFactoryResolver) {} @Input() set data(data: { ponent: any, inputs?: { [key: string]: any } } ) { const pFactory = this.cfr.resolveComponentFactory(data.ponent); const ponent = this.vcr.createComponent(pFactory); if (data.inputs) { for (let key in data.inputs) { ponent.instance[key] = data.inputs[key]; } } this.destroy(); this.currentComponent = ponent; } destroy() { if (this.currentComponent) { this.currentComponent.destroy(); this.currentComponent = null; } } ngOnDestroy(): void { this.destroy(); } }
抛开一销毁动作不谈的话,实际就两行代码
let pFactory = this.cfr.resolveComponentFactory(this.p);
利用 ComponentFactoryResolver 查找提供组件的 ComponentFactory,而后利用这个工厂来创建实际的组件。
this.pInstance = this.vcr.createComponent(pFactory);
这一切都非常简单。
而对于一些基本的参数,是直接对组件实例进行赋值。
for (let key in data.inputs) { ponent.instance[key] = data.inputs[key]; }
,还需要告诉Angular AOT编译器为用户动态组件提供工厂注册,否则 ComponentFactoryResolver 会找不到它们,最简单就是利用 NgModule.entryComponents
进行注册。
@NgModule({ entryComponents: [ UserOneComponent, UserTwoComponent, UserThirdComponent ] }) export class AppModule { }
但这样其实还是挺奇怪的,entryComponents 本身可能还会存在其他组件。而动态加载组件本身是一个通用性非常强,,把它封装成名曰 StepModule 挺有必要的,这样的话,就可以创建一种看起来更舒服的方式。
@NgModule({ declarations: [ Step ], exports: [ Step ] }) export class StepModule { static withComponents(ponents: any) { return { ngModule: StepModule, providers: [ { provide: ANALYZE_FOR_ENTRY_COMPONENTS, useValue: ponents, multi: true } ] } } }
通过利用 ANALYZE_FOR_ENTRY_COMPONENTS 将多个组件以更友好的方式动态注册至 entryComponents。
const COMPONENTS = [ ]; @NgModule({ declarations: [ ...COMPONENTS ], imports: [ StepModule.withComponents([ ...COMPONENTS ]) ] }) export class AppModule { }
2、一个示例
有3个Step步骤的组件,分别为
// user-one.ponent.ts import { Component, OnDestroy, Input, Injector, EventEmitter, Output } from '@angular/core'; @Component({ selector: 'step-one', template: `<h2>Step One Componentparams value: {{step}}</h2>` }) export class UserOneComponent implements OnDestroy { private _step: string; @Input() set step(str: string) { console.log('@Input step: ' + str); this._step = str; } get step() { return this._step; } ngOnInit() { console.log('step one init'); } ngOnDestroy(): void { console.log('step one destroy'); } }
user-two、user-third 略同,这里组件还需要进行注册
const STEPCOMPONENTS = [ UserOneComponent, UserTwoComponent, UserThirdComponent ]; @NgModule({ declarations: [ ...STEPCOMPONENTS ], imports: [ StepModule.withComponents([ ...STEPCOMPONENTS ]) ] }) export class AppModule { }
这里没有 entryComponents 字眼,而是为 StepModule 模块帮助我们动态注册。这样至少看起来更内聚一点,而且并不会与其他 entryComponents 在一起,待东西越多越不舒服。
,还需要 UserComponent 组件来维护步骤容器,会根据 URL 参数的变化,利用 StepComponent 组件动态加载相应组件。
@Component({ selector: 'user', template: `<step [p]="stepComp"></step>` }) export class UserComponent { constructor(private route: ActivatedRoute) {} stepComp: any; ngOnInit() { this.route.queryParams.subscribe(params => { const step = params['step'] || 'step-one'; // 组件与参数对应表 const pMaps = { 'step-one': { ponent: UserOneComponent, inputs: { step: step } }, 'step-two': { ponent: UserTwoComponent }, 'step-third': { ponent: UserThirdComponent }, }; this.stepComp = pMaps[step]; }); } }
非常简单的使用,而且又对AOT比较友好。
文章里面一直都在提AOT,其实AOT是Angular为了提供速度与包大小而生的,按我们项目的经验来看至少在包的大小可以减少到 40% 以上。
,如果你是用angular cli开发,那么,当你进行 ng build --prod
的时候,默认就已经开启 AOT 编译模式。
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家狼蚁SEO的支持。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程