4
我正在嘗試使用ngbmodal創建通用確認框,這將在應用程序中使用。其中,標題和消息將從調用組件傳遞給模態。我創建了一個DialogService並添加到entryComponents中。現在我可以顯示確認框。但無法獲得結果。以下是顯示ConfirmationBox組件的代碼。如何獲得價值從它ngbModal作爲通用Confrimation Box
const modalRef = this.modalService.open(ConfirmationBoxComponent,{backdrop:"static"})
modalRef.componentInstance.name = "Message";
modalRef.componentInstance.confirmationBoxTitle = "Confirmation?"
modalRef.componentInstance.confirmationmessage = "Do you want to cancel?"
modalRef.componentInstance.changeRef.markForCheck();
感謝它爲我工作。 – Vairavan