使用普通的JavaScript访问AJAX调用中返回的数据可以通过以下步骤:
responseText
属性获取返回的文本数据。responseXML
属性获取返回的XML数据(如果服务器返回的数据是XML格式)。下面是一个完整的示例代码:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var response = JSON.parse(this.responseText);
// 在这里处理返回的数据
console.log(response);
}
};
xhttp.open("GET", "ajax_endpoint_url", true);
xhttp.send();
对于返回的数据,可以根据实际需要进行相应的处理和展示,例如将数据显示在页面上或者进行其他后续操作。
领取专属 10元无门槛券
手把手带您无忧上云