我希望动态创建一个具有动态模板的组件,以便在动态组件的上下文中解析该模板的内插。
我知道我可以使用这段代码创建一个动态组件(必须在模块上的entryComponents中提到):
我的静态组件:
@Component({
selector: 'html-type',
template: `<ng-template #htmlcontrolcomponent></ng-template>`
})
export class HtmlTypeComponent implements AfterViewInit{
@ViewChild('htmlcontrolcomponent', { read: ViewContainerRef }) entry: ViewContainerRef;
constructor(private resolver: ComponentFactoryResolver) {
super();
}
ngAfterViewInit() {
this.createComponent("<div>{{contextvar}}</div>");
}
createComponent(template) {
this.entry.clear();
const factory = this.resolver.resolveComponentFactory(HtmlControlComponent);
const componentRef = this.entry.createComponent(factory);
componentRef.instance.template = template; // this doesn't work, is there a way to do it?
}应该动态添加的组件:
import { Component} from '@angular/core';
@Component({
selector: 'html-control',
template: '',
})
export class HtmlControlComponent {
contextvar: string = "This is my current context";
}是否有方法重新分配动态创建的组件的模板?
我想要达到的目标:动态组件的模板应该是动态的(由用户输入并消毒)
发布于 2020-05-29 13:07:35
我做到了..。用另一种方法
我用了一个DynamicComponentService
:我必须在angular.json中关闭"aot: false“,否则会出现Runtime compiler is not loaded错误。
import {
Compiler,
Component,
ComponentFactory,
Injectable,
NgModule,
Type,
ViewContainerRef,
ViewEncapsulation
} from "@angular/core";
import {CommonModule} from "@angular/common";
@Injectable({
providedIn: "root"
})
export class DynamicComponentService {
protected cacheOfFactories: {[key: string]: ComponentFactory<any>};
protected componentCache: {[key: string]: Type<any>};
protected moduleCache: {[key: string]: Type<any>};
constructor(protected compiler: Compiler) {
this.cacheOfFactories = {};
this.componentCache = {};
this.moduleCache = {};
}
/**
*
* @param viewContainerRef
* @param selector
* @param template
*/
createComponentFactory(viewContainerRef: ViewContainerRef, selector: string, template: string) {
const componentFound = this.componentCache[selector];
if(componentFound) {
this.compiler.clearCacheFor(componentFound);
delete this.componentCache[selector];
}
const moduleFound = this.moduleCache[selector];
if(moduleFound) {
this.compiler.clearCacheFor(moduleFound);
delete this.moduleCache[selector];
}
viewContainerRef.clear();
this.componentCache[selector] = Component({
selector,
template,
encapsulation: ViewEncapsulation.None
})(class {
});
this.moduleCache[selector] = NgModule({
imports: [CommonModule],
declarations: [this.componentCache[selector]]
})(class {
});
return this.compiler.compileModuleAndAllComponentsAsync(this.moduleCache[selector])
.then((factories) => {
const foundFactory = factories.componentFactories.find((factory) => {
return factory.selector === selector;
});
if(foundFactory) {
return viewContainerRef.createComponent(foundFactory);
}
throw new Error("component not found");
})
.catch((error) => {
console.log("error", error);
this.compiler.clearCacheFor(componentFound);
delete this.componentCache[selector];
this.compiler.clearCacheFor(moduleFound);
delete this.moduleCache[selector];
return Promise.reject(error);
});
}
}并将html类型组件更改为:
export class HtmlTypeComponent implements DoCheck {
@ViewChild('htmlcontrolcomponent', { read: ViewContainerRef }) entry: ViewContainerRef;
protected oldTemplate: string = "";
protected componentRef?: ComponentRef<any>;
constructor(private dynamicComponentService: DynamicComponentService) {}
ngDoCheck() {
if(this.entry && this.oldTemplate !== this.to.template) {
this.oldTemplate = this.to.template;
if(this.componentRef) {
this.componentRef.destroy();
delete this.componentRef;
}
this.entry.clear();
this.dynamicComponentService.createComponentFactory(this.entry, 'html-content', this.to.template)
.then((component) => {
this.componentRef = component;
this.componentRef.instance.model = this.model;
});
}
}
}我甚至可以摆脱HtmlControlComponent
https://stackoverflow.com/questions/62085465
复制相似问题