【发布时间】:2017-12-23 21:06:26
【问题描述】:
我有一些函数可以进行一些 ajax 调用。
为了以所需的方式执行所有操作,这些请求必须设置为 async: false。
ajax 调用一切正常。我的问题是我需要在发送请求之前显示一个 div(一个简单的 css 加载器)并在它之后隐藏,但它没有显示。
这是我的功能:
$("#btn1").on('click', function(){
// Apparently it does not executes this
$('.container-loader').show();
//execute the function and handle the callback
doSomeStuff(function(c){
if(!c.ok){
showModalWarning();
$('#text').append('<li>'+c.msg+'</li>');
}
else{
toastr.success('Everything is ok');
doOtherStuff($("#select").val());
}
});
var modal = document.getElementById('Modal1');
modal.style.display = "none";
return false;
});
我的 doSomeStuff() 发出请求的函数:
function doSomeStuff(callback){
//...
for (var i = 0; i < ids.length; i++) {
var Id = ids[i][0];
var ch = ids[i][1];
var tp = 2;
var url = 'http://domain.com.br:8080/datasnap/rest/TSM/Fun/' + tp + '/' + $("#select").val() + '/' + ch;
$.ajax({
cache: "false",
async: false, //it needs to by with async false
dataType: 'json',
type: 'get',
url: url,
success: function(data) {
if (!data)
toastr.error('error' );
},
error: function(jqXHR, textStatus, errorThrown) {
toastr.error("some problem");
}
});
}
callback({ok: true});
}
知道如何处理这个问题吗?我对异步的东西真的很陌生。
【问题讨论】:
标签: javascript jquery ajax show show-hide