vote up 4 vote down star
1

Hi all,

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)

The only thing jQuery says is 'error'.

See this example for details:

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

now my result ist:

log:

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

alert:

Can't do because: error

Any ideas?

flag

The problem appears to be in your php code. Don't you need 2 linebreaks between headers and the body text? Does the header function handle this? – thenduks Oct 28 at 12:42
thenduks: PHP knows what it is doing. The issue is that because the HTTP status coming back is 500, $.ajax() calls the error function passed to it. – Chris Charabaruk Oct 28 at 13:49

2 Answers

vote up 6 vote down check

Look at the responseText property of the request parameter.

link|flag
oh.. that works.. embarrassing .. thanks anyway!! :) – Ghommey Oct 28 at 12:46
vote up 1 vote down

Try:

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

Look also at this encosia article for proper error handling.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.