发送ajax案例
在JavaScript中,可以使用原生的XMLHttpRequest
对象或者更现代的fetch
API来发送AJAX请求。以下是使用这两种方法的示例代码。
使用XMLHttpRequest
发送AJAX请求:
var xhr = new XMLHttpRequest();
xhr.open("GET", "your-endpoint-url", true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
// 请求成功
var response = xhr.responseText;
console.log(response);
}
};
xhr.send();
使用fetch
API发送AJAX请求:
fetch("your-endpoint-url")
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
fetch
API 是现代浏览器中推荐的方式,它提供了更好的语义和更灵活的链式调用方式。
评论已关闭