我正在尝试将一个组件动态加载到烤面包机的另一个子组件中。因此,作为组件的烤面包机将在其内容区域中加载另一个组件。
没有指令。如果有效,那么我将尝试使用这些指令。
<ng-template #regularContent>
<div class="sn-content" [innerHTML]="content"></div>
<div #target></div>
</ng-template>
@ViewChild('target', {read: ViewContainerRef}) vc: ViewContainerRef;
ngAfterViewInit() {
const factory = this.componentFactoryResolver.resolveComponentFactory(TestComponetComponent);
this.vc.createComponent(factory);
}