PHP响应上的jQuery ajax错误

时间:2015-03-09 21:12:58

标签: javascript php jquery error-handling

我构建了一个webservice,需要实现正确的error-handling

所以在PHP中,我做了:

if($error){
    error_log("Empty response for ".$url);
    header('HTTP', true, 500);
    return 'An error occured';
}

在jQuery中:

$( document ).ajaxError(function(xhr, status) {
    alert(xhr.responseText);
});

然而,

  

xhr.responseText 是"未定义"。

出了什么问题?

0 个答案:

没有答案