从JavaScript获取HTTP状态可以通过以下几种方式实现:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://example.com', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
console.log('请求成功');
} else {
console.log('请求失败');
}
}
};
xhr.send();
fetch('http://example.com')
.then(function(response) {
if (response.ok) {
console.log('请求成功');
} else {
console.log('请求失败');
}
})
.catch(function(error) {
console.log('请求错误');
});
总结起来,从JavaScript获取HTTP状态可以使用XMLHttpRequest对象、Fetch API或第三方库来发送HTTP请求并处理响应。这些方法可以帮助开发人员获取HTTP状态码,并根据状态码进行相应的处理。
腾讯云相关产品推荐:腾讯云CDN(内容分发网络)产品可以帮助加速网站的内容传输,提高用户访问体验。详情请参考腾讯云CDN产品介绍:腾讯云CDN。
领取专属 10元无门槛券
手把手带您无忧上云