在Ajax請求中設置超時可以使用以下方法:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
// 請求成功處理邏輯
}
}
};
xhr.open('GET', 'example.php', true);
xhr.timeout = 5000; // 設置超時時間為5秒
xhr.ontimeout = function() {
// 超時處理邏輯
};
xhr.send();
$.ajax({
url: 'example.php',
type: 'GET',
timeout: 5000, // 設置超時時間為5秒
success: function(data) {
// 請求成功處理邏輯
},
error: function(xhr, status, error) {
if (status == 'timeout') {
// 超時處理邏輯
}
}
});
通過以上方法可以在Ajax請求中設置超時時間,確保在超時情況下能夠及時處理。