我想从无法解析的HTTP正文中记录无法解析的字符串。我怎么去呢?
$.ajax({type: "POST", url: url})
.done(function (data)
{
// Do stuff
})
.fail(function (jqXHR, textStatus, errorThrown)
{
if (textStatus === "parsererror")
{
var rawBodyData = ?
console.log("Parsing failed: " + rawBodyData);
}
});
最佳答案
原始响应字符串可以在这里找到:jqXHR.responseText
关于jquery - JQuery : How to get the unparseable string?中的parsererror,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16039205/