怎么获得ajax的响应数据中的数据部分
时间: 2023-05-15 08:07:02 浏览: 94
您可以使用XMLHttpRequest对象来获取ajax响应数据中的数据部分。您可以使用以下代码:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var response = JSON.parse(this.responseText);
var data = response.data;
// Do something with the data
}
};
xhr.open("GET", "url/to/ajax", true);
xhr.send();
阅读全文