0
私は、モーダルコンポーネントを動的に作成し、ボディまたはルート要素にコンポーネントを追加したいと考えています。角2アプリケーションのViewContainerRefを取得
コンポーネントを動的に追加する必要がある場合は、ViewContainerRef
が必要です。例えば
:ルートコンポーネントにコンポーネントを追加する方法
createComponent(type) {
this.container.clear();
const factory: ComponentFactory = this.resolver.resolveComponentFactory(AlertComponent);
this.componentRef: ComponentRef = this.container.createComponent(factory);
}
?