Nasıl jQuery $. Ajax hata yanıtı metni almak için?

6 Cevap php

I am sending an error response to my jQuery. However I can not get the response text (in the example below this would be Gone to the beach)

JQuery diyor tek şey 'hata' olduğunu.

Ayrıntılar için bu örneğe bakın:

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 ! " );
});

şimdi benim sonuç ist:

log:

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

uyarı:

Yapamaz çünkü: hata

Herhangi bir fikir?

6 Cevap

Deneyin:

error: function(xhr, status, error) {
  var err = eval("(" + xhr.responseText + ")");
  alert(err.Message);
}

Uygun hata işleme için this encosia article de bakmaya.

Istek parametresi responseText tesiste bak.

Bunu da deneyebilirsiniz:

$(document).ajaxError(
    function (event, jqXHR, ajaxSettings, thrownError) {
        alert('[event:' + event + '], [jqXHR:' + jqXHR + '], [ajaxSettings:' + ajaxSettings + '], [thrownError:' + thrownError + '])');
    });

Bu benim için çalıştı nedir

    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);
        }
    }

Bir ağ hatası sahip ve exmple yetersiz ayrıcalıklar, sunucusu bir 200 ile yanıt ve bir hata mesajı için, arka uç bir hata yüzey isteyen değilseniz. Sonra başarı işleyicisi onay data.status == 'hata' olarak

Benim için, bu sadece çalışır:

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