在对从数据库中获取数据并将响应返回给所进行的Ajax的回调函数的API进行Ajax调用时。
此回调函数等待响应需要多少时间 从可从db获取数据的API中获取?
是否有增加等待时间的时间的方法 进行Ajax调用的回调函数?
答案 0 :(得分:0)
是的,您可以自定义请求的超时。 假设您正在使用jQuery。如果没有,您也可以为原始XHR请求自定义超时,只需在Google上搜索语法
下面是一个示例,说明如何做:
$.ajax({
url: "/url/to/the/endpoint",
error: function(){
// will fire when timeout is reached, or server responded with error status code
},
success: function(){
//will fire when 200 success was received from the server
},
timeout: 3000 // sets timeout to 3000 milliseconds, You can change according to your need
});
希望有帮助!