2017-05-04 89 views
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); 
    } 

如何追加成分的根組件?

回答

0

您應該在您的rootcomponent html文件中使用選擇器