$.ajax({
url: "data.php"
}).done(function(data) {
//code
});
仅当“data.php”文件中有新数据时,设置 AJAX 调用的最快和最低服务器方法是什么?前任。设置间隔
如何检查此请求何时完成而不发送另一个请求。当旧的不完整时?
处理ajax请求时显示“正在加载...”状态?
<script type="text/javascript">
var inProcess = 0;
function get_new_stuff() {
if (inProcess == 0) {
inProcess = 1;
$.ajax({
type: 'POST', //or GET
dataType: "json", //or html, text
url: 'data.php',
data: '',
beforeSend: function() {
// please wait... message
},
success: function (data) {
// returned data
inProcess = 0;
},
error: function (jqXHR, textStatus, errorThrown) {
// on error
inProcess = 0;
alert(textStatus + ": " + errorThrown);
},
cache: false
});
}
}
setTimeout(get_new_stuff, 10000);
</script>