是否有可能"禁用网络安全"仅适用于选定网站的Chrome浏览器?

时间:2018-01-04 05:51:30

标签: javascript google-chrome xmlhttprequest

当您遇到血腥的飞行前错误(在开发期间的那些XHR请求中)时,建议的解决方案是:

open -a Google\ Chrome --args --disable-web-security --user-data-dir

好吧,我不希望这样做,因为Chrome是我浏览网络的默认浏览器,我的开发将持续4-5个月的时间,我不想每天打开/关闭它。它不会发生。

然后它会让你想问是否有选择或方式告诉嘿查理! Turn off the web security but only, and only if you are XHR'ing to this domain

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可以在标头中使用 Access-Control-Allow-Origin:http://localhost:3000 ,这样只会允许您在标头中提及的网址,但在每次通话中都会为网址提供额外的标头有效负载。

您可以在https://www.google.co.in/amp/s/jvaneyck.wordpress.com/2014/01/07/cross-domain-requests-in-javascript/amp/

上查看更多详情