要在Angular 6中使用AOT编译并在运行时动态创建模块,您可以按照以下步骤进行操作:
ComponentFactoryResolver
来动态创建组件。示例代码如下:import { NgModule, ComponentFactoryResolver, Type, ViewContainerRef } from '@angular/core';
@NgModule({})
export class DynamicModule {
constructor(private componentFactoryResolver: ComponentFactoryResolver) { }
createComponent(component: Type, container: ViewContainerRef) {
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(component);
container.createComponent(componentFactory);
}
}
DynamicModule
并使用它来动态创建模块。示例代码如下:import { Component, ViewChild, ViewContainerRef } from '@angular/core';
import { DynamicModule } from './dynamic.module';
@Component({
selector: 'app-dynamic-component',
template: ''
})
export class DynamicComponent {
@ViewChild('container', { read: ViewContainerRef }) container: ViewContainerRef;
constructor(private dynamicModule: DynamicModule) { }
createDynamicComponent() {
// 动态创建组件
this.dynamicModule.createComponent(DynamicComponent, this.container);
}
}
DynamicModule
添加到imports
数组中。示例代码如下:import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { DynamicComponent } from './dynamic.component';
import { DynamicModule } from './dynamic.module';
@NgModule({
imports: [BrowserModule, DynamicModule],
declarations: [DynamicComponent],
bootstrap: [DynamicComponent]
})
export class AppModule { }
createDynamicComponent
方法以动态创建模块。示例代码如下:import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: ' '
})
export class AppComponent {
constructor(private dynamicComponent: DynamicComponent) { }
createDynamicComponent() {
this.dynamicComponent.createDynamicComponent();
}
}
以上就是使用AOT编译在运行时动态创建模块的解决方法。