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請求。