Sweetalert2在确认时重定向

时间:2019-07-12 15:36:11

标签: sweetalert2

当用户单击SweetAlert2中的确认按钮时,我想将用户重定向到另一个页面,并保持打开模式以显示重定向正在进行。

我设法通过在关闭后重新初始化模式并切换加载状态来实现使用。有更好的内置方法吗?在旧版v1中是有可能的。

var redirect = function () {
    return Swal.fire({
        type: 'warning',
        title: 'Are you sure?',
        confirmButtonText: 'Yes',
        showLoaderOnConfirm: true,
        allowOutsideClick: false,
        preConfirm: function () { 
           window.location.href = 'https://dapurlindawaty.com';
        }
    });
};

redirect().then(function (result) {
    if (result.value) {
        redirect();
        Swal.showLoading();
    }
});

https://jsfiddle.net/bytestream/vfzgx10L/2/

0 个答案:

没有答案