XMLHttpRequest如何设置超时时间

avatar
作者
筋斗云
阅读量:2

在使用XMLHttpRequest对象发送请求时,可以通过设置timeout属性来定义超时时间,单位为毫秒。如果请求在超时时间内没有完成,则会触发timeout事件。

示例代码如下:

var xhr = new XMLHttpRequest(); xhr.open('GET', 'example.com/api/data', true); xhr.timeout = 5000; // 设置超时时间为5秒  xhr.onload = function() {   if (xhr.status >= 200 && xhr.status < 300) {     // 请求成功处理逻辑   } else {     // 请求失败处理逻辑   } };  xhr.ontimeout = function() {   // 请求超时处理逻辑 };  xhr.send(); 

在上面的示例中,设置了xhr.timeout = 5000; 表示设置超时时间为5秒,如果请求在5秒内没有完成,则会触发ontimeout事件。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!