HTML5教程

Chrome正在修改CORS实现,隐藏OPTIONS请求

本文主要是介绍Chrome正在修改CORS实现,隐藏OPTIONS请求,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

从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 等软件抓包。

原文链接 https://www.chromium.org/Home...

这篇关于Chrome正在修改CORS实现,隐藏OPTIONS请求的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!