允许 Google Chrome 使用 XMLHttpRequest 从本地文件加载 URL
当尝试使用 XMLHttpRequest 从本地文件发出 HTTP 请求时,由于 Access-Control-Allow-Origin
违规,它基本上会失败。
但是,我自己使用的是本地网页,所以我想知道是否有任何方法可以让 Google Chrome 允许这些请求,这些请求是从本地文件到互联网上的 URL。
例如, $.get('http://www.google.com/')
在本地文件中执行时失败,但我自己编写了页面脚本并且自己使用它,因此,如果我可以抑制它并加载 URL,那将非常有用。
那么,如何允许 Google Chrome 使用 XMLHttpRequest 从本地文件加载 URL?
When trying to do a HTTP request using XMLHttpRequest from a local file, it basically fails due to Access-Control-Allow-Origin
violation.
However, I'm using the local web page myself, so I was wondering if there is any way to make Google Chrome allow these requests, which are from a local file to a URL on the Internet.
E.g., $.get('http://www.google.com/')
fails when executing in a local file, but I've scripted the page myself and I'm using it myself, so it would be extremely useful if I could suppress it and load the URL.
So, how can I allow Google Chrome to load URLs using XMLHttpRequest from local files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
--disable-web-security
开关非常危险!为什么要完全禁用安全性,而您可以使用--allow-file-access-from-files
开关允许 XMLHttpRequest 从其他文件访问文件?在使用这些命令之前,请务必结束所有正在运行的 Chrome 实例。
在 Windows 上:
在 Mac 上:
Chrome 的此“功能”的讨论:
Using
--disable-web-security
switch is quite dangerous! Why disable security at all while you can just allow XMLHttpRequest to access files from other files using--allow-file-access-from-files
switch?Before using these commands be sure to end all running instances of Chrome.
On Windows:
On Mac:
Discussions of this "feature" of Chrome:
使用
--disable-web-security
启动 chrome在 Windows 上:
在 Mac 上:
这将允许跨域请求。
我不知道这是否也适用于本地文件,但请告诉我们!
并提一下,这正是您所期望的,它禁用网络安全,所以要小心。
startup chrome with
--disable-web-security
On Windows:
On Mac:
This will allow for cross-domain requests.
I'm not aware of if this also works for local files, but let us know !
And mention, this does exactly what you expect, it disables the web security, so be careful with it.
Mac 版。从终端运行:
Mac version. From terminal run:
在 Ubuntu 上:
有关更多详细信息/开关:
http:// /peter.sh/experiments/chromium-command-line-switches/
引用自
On Ubuntu:
For more details/switches:
http://peter.sh/experiments/chromium-command-line-switches/
Referenced from