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