如何通过ajaxError获取错误消息?

时间:2017-10-05 11:32:25

标签: javascript php jquery ajax

我的PHP代码:

throw Exception("Lorem !", 403);

现在我想通过ajaxError获取Lorem !

$(document).on('ajaxError', function(el, jqxhr) {
  console.log(xhr.statusText);
  console.log(xhr.responseText);
});

xhr.statusText给我Forbidden消息,而不是Lorem !xhr.responseText提供403页面的所有HTML代码!
如何才能提供Lorem !文字?

0 个答案:

没有答案