模态组件可以获取并发布 ViewContainerRef。例如,它可以使用 BehaviorSubject。父组件可以创建自定义组件,并在 viewContainerRef 发布时将其添加到 modal 中。我只是这样做,而不仅仅是一个吸气剂,因为 ViewChild 在 afterViewInit 之前是无效的,所以你需要一种方法来处理它。
// EditModalComponent
export class EditModalComponent implements AfterViewInit {
@ViewChild("editDataModalBody", {read: ViewContainerRef}) vc: ViewContainerRef;
public bodyRefSubject: BehaviorSubject<ViewContainerRef> = new BehaviorSubject<ViewContainerRef>(null);
constructor(
public bsModalRef: BsModalRef,
public vcRef: ViewContainerRef
) {}
ngAfterViewInit() {
this.bodyRefSubject.next(this.vc);
}
onCancelClicked() {
console.log('cancel clicked');
this.bsModalRef.hide()
}
}
在父组件中:
// Parent Component
export class AppComponent {
bsModalRef: BsModalRef;
bodyContainerRef: ViewContainerRef;
customComponentFactory: ComponentFactory<CustomComponent>;
modalConfig: ModalOptions;
constructor(
private modalService: BsModalService,
private resolver: ComponentFactoryResolver
) {
this.customComponentFactory = resolver.resolveComponentFactory(CustomComponent);
}
openModalWithComponent() {
this.modalConfig = {
ignoreBackdropClick: true,
}
this.bsModalRef = this.modalService.show(EditModalComponent, this.modalConfig);
this.bsModalRef.content.bodyRefSubject.subscribe((ref) => {
this.bodyContainerRef = ref;
if (this.bodyContainerRef) {
this.bodyContainerRef.createComponent(this.customComponentFactory);
}
})
}
}
不使用 ViewChild 的另一种方法是在 div 上放置一个指令而不是 #editDataModalBody 并且该指令可以注入 ViewContainerRef 并使用服务或类似的方式发布它。