关于javascript:如何显示Ajax ResponseText?

How to Display ajax responseText?

本问题已经有最佳答案,请猛点这里访问。

嗨,朋友们,我怎么知道这里的主要信息是如何显示我的J44?

1
2
3
error: function (xhr, status, errorThrown) {
alert(xhr.responseText);
}

enter image description here


让它

1
2
3
error: function (xhr, status, errorThrown) {
   alert(JSON.parse(xhr.responseText).category[0]);
}