从2020年1月6日开始的几周内,谷歌将逐步替换 chrome 中的 CORS 实现,新的实现称之为 "OOR-CORS"(Out of Renderer CORS),顾名思义,谷歌想要将 CORS 细节隐藏到浏览器内部。
CORS releated detailed network transaction can not be observed via DevTools' Network tab. You need to take a NetLog dump for further investigation. You can use netlogchk.html to analyze the obtained NetLog dump to see if there is CORS related error. NetLog Viewer is general purpose online tools to check details on the dump.
其中一项变化是:谷歌会在 Chrome DevTools 网络面板中隐藏掉与 CORS 细节相关的网络流量,如 OPTIONS 的预检请求,这给我们的 CORS 调试造成了很多不便。
现在要查看与 CORS 细节相关的网络流量,我们可以在 chrome://net-export/ 抓取 chrome 内部网络事件日志,并在https://netlog-viewer.appspot... 中打开查看。另外我们也可以使用 fiddler 或 wireshark 等软件抓包。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。