我正在使用Angular编译器的 compileModuleAndAllComponentsAsync 在Angular v6中创建动态组件,并使用以下代码。
viewChangeMethod(view: string) {
let template = `<span>${view} </span>`;
const tmpCmp = Component({ template: template })(class { });
this._compiler.clearCacheFor(this.tmpModule)
this.tmpModule = NgModule({ declarations: [tmpCmp,FRAComponent],import:[ComonModule] })(class {
});
this._compiler.compileModuleAndAllComponentsAsync(this.tmpModule)
.then((factories) => {
const f = factories.componentFactories[0];
const cmpRef = f.create(this._injector, [], null, this._m);
this._container.detach()
console.log(cmpRef.hostView)
this._container.insert(cmpRef.hostView);
})
this._compiler.clearCacheFor(this.tmpModule)
}
一切正常,但是在导入任何共享模块或自定义模块时出错以下。
答案 0 :(得分:0)
如果您需要共享模块或动态组件的任何其他模块,我建议您采用稍微不同的方法来创建动态组件。
我的项目使用动态组件,并且我也将各种模块导入其中,但是我使用以下方法创建了组件-Full working StackBlitz
以上是我创建的StackBlitz示例,如果您想根据需要进行调整||下面是代码的副本。
import {
Component, ViewChild, AfterContentInit, ComponentFactoryResolver,
Compiler, ViewContainerRef, NgModule, NgModuleRef
} from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
@Component({
selector: 'app',
template: '<ng-template #vc></ng-template>',
styleUrls: ['./app.component.css']
})
export class AppComponent implements AfterContentInit {
@ViewChild('vc', { read: ViewContainerRef }) _container: ViewContainerRef;
private cmpRef;
constructor(
private componentFactoryResolver: ComponentFactoryResolver,
private compiler: Compiler,
private _m: NgModuleRef<any>) { }
ngAfterContentInit() {
this.addComponent();
}
public sayHello(): void{
alert("Hello!");
}
private addComponent(): void {
@Component({
template: `<h2>This is a dynamic component</h2>
<button (click)="_parent.sayHello()">Click me!</button>`
})
class DynamicComponent {
constructor(public _parent: AppComponent) { }
}
@NgModule({
imports: [
BrowserModule
],
declarations: [DynamicComponent],
}) class DynamicModule { }
const mod = this.compiler.compileModuleAndAllComponentsSync(DynamicModule);
const factory = mod.componentFactories.find((comp) =>
comp.componentType === DynamicComponent
);
this.cmpRef = this._container.createComponent(factory);
}
}
答案 1 :(得分:0)
您可以按照以下解决方案完成工作,我已经验证了其先前的NG版本,您可以尝试将其集成到解决方案中。
定义这样的服务
import { Injectable, Type, Component, ComponentFactoryResolver, ViewContainerRef, ComponentRef, QueryList, ComponentFactory } from '@angular/core';
@Injectable()
export class DynamicComponentService {
constructor(private componentFactoryResolver: ComponentFactoryResolver) {
}
public append(componentType: Type<any>, where: ViewContainerRef): ComponentRef<any> {
const componentFactory = this.resolveFactory(componentType);
const componentRef = where.createComponent(componentFactory);
return componentRef;
}
public resolve (componentType: Type<any>): ComponentFactory<any> {
const componentFactory: ComponentFactory<any> = this.componentFactoryResolver.resolveComponentFactory(componentType);
return componentFactory;
}
}
以上服务负责动态注入您的组件。
还请注意,您不需要将组件作为字符串传递,而需要传递其类型。
在实施之前,请仔细阅读上述课程。
用法–
在组件中注入服务 同样在组件中使用“查看容器参考”(在我的代码中this.viewContainerReference下面,这是必须注入动态组件的地方)
componentReference = this.dynamicComponentService.append(ComponentClass, this.viewContainerReference);
componentReference.instance.someProp = whatever;
上面的someProp是组件的公共属性,您可以向其传递一些数据。
您可以像往常一样将模块作为@NgModule导入和组件的一部分导入 另外,请确保您具有方案:[NO_ERRORS_SCHEMA]