由于我没有使用服务器,如何访问 Chrome 中的原始策略
我想更改chrome中的origin策略,如何访问并修改它?
非常感谢
I want to change the origin policy in chrome, how can I access it and modify it?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是在谈论放宽 file:/// url 的同源策略吗?如果是这样,我强烈建议您在本地计算机上设置一个 Web 服务器并以这种方式进行开发。
也就是说,您可以使用以下命令行标志运行 Chrome: --allow-file-access-from-files 这将使所有 file:/// url 在同一源中运行。缺点:您下载并打开的任何 .html 页面都可能打开您系统上的任何文件,并在您不知情的情况下将其上传到某个服务器。所以如果你这样做的话,你需要更加小心。
除了 file:/// url 之外,您无法在 CORS 等 API 之外更改同源策略。
Are you talking about relaxing the same origin policy for file:/// urls? If so, I strongly recommend you set up a web server on your local machine and develop that way.
That said, you can run Chrome with this command line flag: --allow-file-access-from-files This will make all file:/// urls run in the same origin. The downside: any .html page you download and open could possibly open any file on your system and upload it to some server without you knowing. So you need to be more careful if you're doing this.
Besides file:/// urls you cannot change the same origin policy outside of APIs like CORS.