我正在尝试使用ngbmodal创建通用确认框,它将在整个应用程序中使用。其中,标题和消息将从调用组件传递给模态。我创建了一个DialogService并添加到entryComponents中。现在我可以显示确认框。但是无法得到结果。下面是显示ConfirmationBox组件的代码。如何从中获取价值
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();
答案 0 :(得分:6)
有很多简单的方法可以达到这个目的但我会建议一个最简单,最有效的IMO:用户选择解决模态的result
承诺。这就像在表示模态内容的组件中做以下一样简单(注意activeModal.close(...)
):
<button (click)="activeModal.close(true)">Yes</button>
<button (click)="activeModal.close(false)">No</button>
之后,您可以通过NgbModalRef的result
承诺(通知modalRef.result.then
)取回用户的回答:
open() {
const modalRef = this.modalService.open(NgbdModalContent);
modalRef.componentInstance.confirmationBoxTitle = 'Confirmation?';
modalRef.componentInstance.confirmationMessage = 'Do you want to cancel?';
modalRef.result.then((userResponse) => {
console.log(`User's choice: ${userResponse}`)
});
}
您可以在以下plunker中看到所有这些内容:http://plnkr.co/edit/yYIx1m1e2nfK0nxFwYLJ?p=preview