Chrome正在修改CORS實現,隱藏OPTIONS請求

從2020年1月6日開始的幾周內,谷歌將逐步替換 chrome 中的 CORS 實現,新的實現稱之爲 "OOR-CORS"(Out of Renderer CORS),顧名思義,谷歌想要將 CORS 細節隱藏到瀏覽器內部。html

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 調試形成了不少不便。chrome

如今要查看與 CORS 細節相關的網絡流量,咱們能夠在 chrome://net-export/ 抓取 chrome 內部網絡事件日誌,並在https://netlog-viewer.appspot... 中打開查看。另外咱們也可使用 fiddler 或 wireshark 等軟件抓包。瀏覽器

原文連接 https://www.chromium.org/Home...網絡

相關文章
相關標籤/搜索