我在我的角度應用中使用了Sweet-alert
。如何關閉ajax請求完成時的甜蜜提醒
function GetDataFromServer(url) {
SweetAlert.swal(
{
title: "",
text: "Please wait.",
imageUrl: "../../app/app-img/loading_spinner.gif",
showConfirmButton: false
});
return $http.get(url)
.then(success)
.catch(exception);
function success(response) {
//SweetAlert.swal(
// {
// title: "",
// text: "data loaded",
// });
return response.data;
}
function exception(ex) {
return (ex);
}
}
詢價#1(我這個職位的主要目標)
What I am looking for is when the ajax request completes i.e., controls enters in the then(), Sweet alert should automatically hide.
詢價#2 還同時請求處理,我不希望有關閉彈出按鈕(OK按鈕)在甜蜜的警報。
根據文檔,showConfirmButton: false
應該隱藏它,但它不是。
任何幫助/建議高度讚賞。
謝謝。
等一下,你在問什麼,看起來你在問這裏兩個不同的東西。你想隱藏'ok'按鈕嗎?還是想要以彈出的方式關閉? – Relic
@Relic,是的,你是對的我更新了帖子 –
我編輯了我的答案,請參閱完整的成功! – Relic