如果是current,会不会出现调用栈溢出的问题?
因为它递归地调用自身无限
如果会出现这样的问题,有没有更好的实现方式?
function waitForMsg(){
$.ajax({
type: "GET",
url: "xxx.php",
async: true,
cache: false,
timeout: 600000,
success: function(data){
handleFunction(data);
waitForMsg();
},
error: function(XMLHttpRequest, textStatus, errorThrown){
XMLHttpRequest.abort();
waitForMsg();
}
});
}