正如标题所示,我的问题是,是否可以判断 XMLhttpRequest 中的 open 和 send 方法是否真的有效?有没有指标?示例代码:
cli = new XMLHttpRequest();
cli.open('GET', 'http://example.org/products');
cli.send();
我正在尝试对此进行故障处理,但我需要能够判断请求是否失败,以便我可以处理它。
正如标题所示,我的问题是,是否可以判断 XMLhttpRequest 中的 open 和 send 方法是否真的有效?有没有指标?示例代码:
cli = new XMLHttpRequest();
cli.open('GET', 'http://example.org/products');
cli.send();
我正在尝试对此进行故障处理,但我需要能够判断请求是否失败,以便我可以处理它。
这是一个异步操作。在发送请求时,您的脚本会继续执行。
您使用回调检测状态更改:
var cli = new XMLHttpRequest();
cli.onreadystatechange = function() {
if (cli.readyState === 4) {
if (cli.status === 200) {
// OK
alert('response:'+cli.responseText);
// here you can use the result (cli.responseText)
} else {
// not OK
alert('failure!');
}
}
};
cli.open('GET', 'http://example.org/products');
cli.send();
// note that you can't use the result just here due to the asynchronous nature of the request
req = new XMLHttpRequest;
req.onreadystatechange = dataLoaded;
req.open("GET","newJson2.json",true);
req.send();
function dataLoaded()
{
if(this.readyState==4 && this.status==200)
{
// success
}
else
{
// io error
}
}