Sto inviando una risposta di errore al mio jQuery. Tuttavia, non riesco a ottenere il testo della risposta (nell'esempio seguente questo sarebbe Andato in spiaggia )
L'unica cosa che dice jQuery è "errore".
Vedi questo esempio per i dettagli:
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 ! ");
}
});
Ora il mio risultato è:
log:
[XMLHttpRequest readyState=4 status=500, "error", undefined]
mettere in guardia:
Non posso fare perché: errore
Qualche idea?
$.ajax()
chiama la funzione di errore passata ad esso.
header
funzione gestisce questo?