0

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

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");
            });
        }
    });
} 

在此处输入图像描述

4

0 回答 0