【发布时间】:2023-03-08 21:20:02
【问题描述】:
我不知道在哪里以及如何放置删除线:
Clanovi.remove(this._id);
在甜蜜的警报中,我尝试这样:
'click .btn-danger'()
{
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
},
function(isConfirm){
if (isConfirm) {
Clanovi.remove(this._id);
swal("Deleted!", "Your imaginary file has been deleted.", "success");
}
else
{
swal("Cancelled", "Your imaginary file is safe :)", "error");
}
});
}
这不起作用,我不知道该怎么做。它不会删除。
【问题讨论】:
标签: meteor sweetalert