How to Display ajax responseText?
嗨,朋友们,我怎么知道这里的主要信息是如何显示我的J44?
1 2 3
| error: function (xhr, status, errorThrown) {
alert(xhr.responseText);
} |
- xhr.responsetext.category [ 0 ]
- "这是niklesh将掷异常。undefinedxhr.responseText.category是,你不能访问[0]undefined)。
- 你能够把这个解决方案?
让它
1 2 3
| error: function (xhr, status, errorThrown) {
alert(JSON.parse(xhr.responseText).category[0]);
} |
- 这将引发一个异常。xhr.responseText.category为undefined,不能访问undefined的[0]。