在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参数来传递请求数据。具体的调用方式还取决于后端接口的要求和项目中使用的框架和库。