gpt4 book ai didi

javascript - 防止 SweetAlert2 从 willClose 中关闭/解除?

转载 作者:行者123 更新时间:2023-12-04 08:40:04 25 4
gpt4 key购买 nike

抱歉,如果我在文档中遗漏了一些内容,但无论如何我都找不到阻止在 SweetAlert 2 中关闭对话框的方法,这些将不起作用:

        await Swal.fire({
html: diagHtml,
showCancelButton: true,

willClose: (el) => {
console.log(el);

if (someLogic()) {
event.preventDefault();
return false;
}
},
});

有没有办法让对话框保持不变,最好使用 async

最佳答案

不,您不能使用 willClose 阻止对话框关闭,也许以下代码可以替代您:

await Swal.fire({
html: diagHtml,
showDenyButton: true,
allowOutsideClick: false,
allowEscapeKey: false,
preConfirm: () => {
if (someLogic()) {
return false; // Prevent confirmed
}
},
preDeny: () => {
if (someLogic()) {
return false; // Prevent denied
}
},
});

关于javascript - 防止 SweetAlert2 从 willClose 中关闭/解除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64620928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com