我需要一种方法来打开模态后重新加载页面。我需要更新的结果之前再次打开模态。我正在使用这个方法,但它不工作:
if (data == "done") {
Swal.fire({
icon: 'success',
html: '<?= $getTranslation->tr('success') ?>',
confirmButtonText: '<?= $getTranslation->tr('confirm') ?>',
showCloseButton: true
}).then((result) => {
if (result.isConfirmed) {
// location.reload();
$('.step-6-modal').modal('show');
}
})
}
1条答案
按热度按时间uqdfh47h1#