我发送一个错误响应到我的jQuery。 然而,我不能得到响应文本(在下面的例子中,这将是去海滩)

jQuery唯一说的是“错误”。

详情请看这个例子:

php

<?
    header('HTTP/1.1 500 Internal Server Error');
    print "Gone to the beach"
?>

jQuery

$.ajax({
    type:     "post",
    data:     {id: 0},
    cache:    false,
    url:      "doIt.php",
    dataType: "text",
    error: function (request, error) {
        console.log(arguments);
        alert(" Can't do because: " + error);
    },
    success: function () {
        alert(" Done ! ");
    }
});

现在我的结果是:

log:

 [XMLHttpRequest readyState=4 status=500, "error", undefined]

警告:

不能做是因为:错误

什么好主意吗?


当前回答

查看请求参数的responseText属性。

其他回答

如果您没有网络错误,并且希望从后端显示错误,例如权限不足,则使用200和错误消息作为服务器响应。然后在成功处理程序中检查数据。Status == 'error'

查看请求参数的responseText属性。

如果您想获得带有行号的语法错误,请使用此方法

error: function(xhr, status, error) {
  alert(error);
}

犯错。responseText包含HTML标签,你可以很容易地从这些标签得到错误消息… 例如:

$(err.responseText)
// k.fn.init(12) [text, title, text, meta, text, style, text, span, text, font, text, //comment]

$.ajax({
    async: bAsync,
    type: 'POST',
    url: pUrl,
    contentType: 'application/json; charset=utf-8;',
    dataType: 'json',
    data: pData,
    success: fn,
    error: function(err) {
        alert( $($(err.responseText)[1]).text() )
        debugger;
    }
});

尝试在控制台中有完整的错误细节。

error: function(XMLHttpRequest, textStatus, errorThrown) {
                    console.log("Error Thrown: " + errorThrown);
                    console.log("Text Status: " + textStatus);
                    console.log("XMLHttpRequest: " + XMLHttpRequest);
                    console.warn(XMLHttpRequest.responseText)
               }