Ajax之原生请求---XMLHttpRequest对象的使用(超详细)
// 创建一个新的 XMLHttpRequest 对象
var xhr = new XMLHttpRequest();
// 配置请求类型、URL 以及是否异步处理
xhr.open('GET', 'your-api-endpoint', true);
// 设置请求完成的回调函数
xhr.onreadystatechange = function () {
// 请求完成并且响应状态码为 200
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
// 处理请求成功的响应数据
console.log(xhr.responseText);
} else {
// 处理请求失败
console.error('请求失败,状态码:' + xhr.status);
}
}
};
// 发送请求
xhr.send();
这段代码展示了如何使用原生的 XMLHttpRequest 对象发送一个 GET 请求到指定的 API 端点,并在请求成功完成后处理响应数据。代码中包含了错误处理,如果请求失败,它会在控制台输出失败信息。
评论已关闭