最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Prevent SweetAlert2 from closingdismissing from willClose? - Stack Overflow

programmeradmin0浏览0评论

Sorry if I am missing something from the documentation but I can't find anyway to prevent a dialog from closing in SweetAlert 2, these won't work:

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

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

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

Is there a way to keep the dialog stay, preferably with async?

Sorry if I am missing something from the documentation but I can't find anyway to prevent a dialog from closing in SweetAlert 2, these won't work:

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

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

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

Is there a way to keep the dialog stay, preferably with async?

Share Improve this question asked Oct 31, 2020 at 10:52 Luke VoLuke Vo 20.9k25 gold badges127 silver badges230 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

No, you can't prevent dialog from closing with willClose, maybe the following code can be your alternative:

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
    }
  },
});
发布评论

评论列表(0)

  1. 暂无评论