gpt4 book ai didi

ajax - 查看实际响应而不是 "This request has no response data available"

转载 作者:行者123 更新时间:2023-12-03 21:16:06 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





View AJAX response content in Chrome developer tools?

(9 个回答)


2年前关闭。




当有东西触发时 Ajax XHR 请求 ,有时,如果 php (或其他服务器端脚本)有一些 fatal error , Chrome 浏览器返回这样的响应:

enter image description here

但是,如果我们手动打开那个失败的 url,那么浏览器会显示该页面的输出(即 Fatal error - $variable not defined 或其他)。
如何在 chrome 中查看实际响应消息,而不是 500 (Internal Server Error) ?

最佳答案

不是解决方案,但如果有人需要获得有关该调用的更多详细信息,请将函数挂接到 AJAX/XHR请求(在 chrome console 中定义):

(function() {
var origOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function() {
this.addEventListener('load', function() {
console.log(this);
});
origOpen.apply(this, arguments);
};
})();

之后,当触发AJAX Action 时, console将显示详细信息。

关于ajax - 查看实际响应而不是 "This request has no response data available",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53904693/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com