解决Chrome浏览器跨域

前后端分离以后经常会遇到的一个跨域问题No 'Access-Control-Allow-Origin'。不想要后台小哥哥修改跨域策略。但自己又必须在Chrome上面调试页面。那么下面这个方法值得一试。
解决方案引用自
Disable same origin policy in Chrome
Google Chrome忽略https证书错误
这边摘要Win10环境的解决方案。
1.Win+R召唤出运行界面。

image.png

2.输入以下命令,就会出现一个新的浏览器窗口。会提示你浏览器安全度降低,表示成功了。现在可以试试需要调试的界面。理论来说是不会提示跨域问题。注意chrome.exe是你安装Chrome浏览器的位置
chrome.exe --user-data-dir="C://Chrome dev session" --disable-web-security

image.png

有的API可能会对IP进行https加密或者自签证书,此时使用浏览器调试会报证书错误的问题。类似ERR_CERT_COMMON_NAME_INVALID
此时只需要在上述命令后面再加上
--test-type --ignore-certificate-errors
完整的命令如下:
chrome.exe --user-data-dir="C://Chrome dev session" --disable-web-security --test-type --ignore-certificate-errors

你可能感兴趣的:(解决Chrome浏览器跨域)