我发送一个错误响应到我的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]

警告:

不能做是因为:错误

什么好主意吗?


当前回答

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

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

其他回答

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

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

这对我来说很管用

    function showErrorMessage(xhr, status, error) {
        if (xhr.responseText != "") {

            var jsonResponseText = $.parseJSON(xhr.responseText);
            var jsonResponseStatus = '';
            var message = '';
            $.each(jsonResponseText, function(name, val) {
                if (name == "ResponseStatus") {
                    jsonResponseStatus = $.parseJSON(JSON.stringify(val));
                     $.each(jsonResponseStatus, function(name2, val2) {
                         if (name2 == "Message") {
                             message = val2;
                         }
                     });
                }
            });

            alert(message);
        }
    }

对我来说,这很简单:

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

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

这将允许您看到整个响应,而不仅仅是“responseText”值

error: function(xhr, status, error) {
    var acc = []
    $.each(xhr, function(index, value) {
        acc.push(index + ': ' + value);
    });
    alert(JSON.stringify(acc));
}