我的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 !
文字?