在Ajax中,可以通過使用JSON.parse()方法將responseText解析為JSON格式的數據。
示例代碼如下:
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var response = JSON.parse(this.responseText);
// 在這里可以使用解析后的JSON數據
console.log(response);
}
};
xmlhttp.open("GET", "url", true);
xmlhttp.send();
解析后的JSON數據可以通過response對象進行訪問和使用。請注意,responseText應該是一個以JSON格式編碼的字符串,否則解析將會失敗。