当用户单击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();
}
});