[chrome] failed to load response data

 

问题

chrome浏览器xhr请求看不到返回数据,但是firefox浏览器可以看到

 

可能原因

1. Chrome 开发者工具开启了 Preserve log

2. 请求回复后立即页面刷新

3. 请求一个很大的 JSON 数据,导致错误

4. 跨域请求

 

开启preserve log详细过程

1. 勾选了 preserve log 

2. 页面1请求接口A,接口A返回URL,跳转到页面2

3. 页面2看不到页面1接口A的返回数据

 

解决办法

1. 使用Firefox浏览器

2. 页面1加入js代码

window.onunload = function() { debugger; }

 

[chrome] failed to load response data

上一篇:MySQL explain 详解


下一篇:NIO核心之Channel通道