标签: javascript json ajax
是否可以使用普通的Ajax(即JavaScript,没有JQuery)来处理JSON响应?
在此说明中: http://www.w3schools.com/ajax/ajax_xmlhttprequest_response.asp仅提及了Text和XML对象,但是如何处理JSON respone?
我只想使用纯JavaScript,而不需要任何其他库。
这向我展示了JSON respone:
console.log(xhttp.responseText);
答案 0 :(得分:2)
您可以使用JSON.parse():
console.log(JSON.parse(xhttp.responseText));