Ajax发送请求的方法有多种,常见的有以下几种:
var xhr = new XMLHttpRequest();
xhr.open("GET", "url", true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
console.log(xhr.responseText);
}
};
xhr.send();
fetch("url")
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.log(error));
$.ajax({
url: "url",
method: "GET",
success: function(data) {
console.log(data);
},
error: function(error) {
console.log(error);
}
});
axios.get("url")
.then(response => console.log(response.data))
.catch(error => console.log(error));
这些方法各有特点,可以根据具体需求选择合适的方法来发送Ajax请求。