在Ajax中調用后端接口的方式有多種。以下是常見的幾種方法:
var xhr = new XMLHttpRequest();
xhr.open("GET", "backend-api-url", true);
xhr.onreadystatechange = function() {
if(xhr.readyState === 4 && xhr.status === 200) {
var response = JSON.parse(xhr.responseText);
// 處理響應數據
}
};
xhr.send();
$.ajax({
url: "backend-api-url",
method: "GET",
success: function(response) {
// 處理響應數據
}
});
fetch("backend-api-url", {
method: "GET"
})
.then(function(response) {
return response.json();
})
.then(function(data) {
// 處理響應數據
});
以上是使用GET方法調用后端接口的示例,如果需要使用其他HTTP方法,可以在請求中設置method屬性為對應的值。此外,還可以通過設置data參數來傳遞請求數據。具體的調用方式還取決于后端接口的要求和項目中使用的框架和庫。