0
我想動態創建一個模態組件並將該組件附加到body或我的根元素。Angular 2獲取應用程序的ViewContainerRef
我知道,當你需要動態添加組件時,你需要一個ViewContainerRef
。
例如:
createComponent(type) {
this.container.clear();
const factory: ComponentFactory = this.resolver.resolveComponentFactory(AlertComponent);
this.componentRef: ComponentRef = this.container.createComponent(factory);
}
如何追加成分的根組件?