我想获取root组件并在其后插入我的组件。 这是一个代码,我试图获得根组件:
// get app root view component ref
if (!this.rootViewContainerRef) {
this.rootViewContainerRef = this.appRef['_rootComponents'][0]['_nativeElement'].vcRef;
}
但是this.rootViewContainerRef在这里为空。我在这里错了什么?
获得root组件后我想这样做:
this.rootViewContainerRef.createComponent(notificationFactory, this.rootViewContainerRef.length, childInjector);