Angular 5服务调用不基于模态结果

时间:2018-03-22 08:27:56

标签: angular bootstrap-modal ngx-modal

当用户点击删除按钮时,我在桌面上有一个删除按钮,我想要求用户确认删除。如果使用点击是,我需要拨打服务电话。我打电话时遇到了问题。下面是我的代码,我也附上了错误。

delete (id) {
    this.modalRef = this.modalService.show(ConfirmationModalComponent);
    this.modalRef.content.onClose.subscribe(result => {
        if (result === true) {
            this.userService.deleteUser(id).subscribe(response => {
                alert("Record deleted successfully");
            });
        }
    });
} 

enter image description here

0 个答案:

没有答案