使用XMLHttpRequest 封装一个http请求函数,并返回调用结果,直接给出代码案例
时间: 2023-03-04 19:32:15 浏览: 215
XMLHttpRequest处理xml格式的返回数据(示例代码)
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://example.com/some.file', true);
xhr.onload = function (e) {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
console.log(xhr.responseText);
} else {
console.error(xhr.statusText);
}
}
};
xhr.onerror = function (e) {
console.error(xhr.statusText);
};
xhr.send(null);
阅读全文