允许 Google Chrome 使用 XMLHttpRequest 从本地文件加载 URL

发布于 2024-10-14 07:41:20 字数 359 浏览 2 评论 0原文

当尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

薄荷→糖丶微凉 2024-10-21 07:41:20

使用 --disable-web-security 开关非常危险!为什么要完全禁用安全性,而您可以使用 --allow-file-access-from-files 开关允许 XMLHttpRequest 从其他文件访问文件?

在使用这些命令之前,请务必结束所有正在运行的 Chrome 实例。

在 Windows 上:

chrome.exe --allow-file-access-from-files

在 Mac 上:

open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files

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:

chrome.exe --allow-file-access-from-files

On Mac:

open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files

Discussions of this "feature" of Chrome:

森罗 2024-10-21 07:41:20

使用 --disable-web-security 启动 chrome

在 Windows 上:

chrome.exe --disable-web-security

在 Mac 上:

open /Applications/Google\ Chrome.app/ --args --disable-web-security

这将允许跨域请求。
我不知道这是否也适用于本地文件,但请告诉我们!

并提一下,这正是您所期望的,它禁用网络安全,所以要小心。

startup chrome with --disable-web-security

On Windows:

chrome.exe --disable-web-security

On Mac:

open /Applications/Google\ Chrome.app/ --args --disable-web-security

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.

萌能量女王 2024-10-21 07:41:20

Mac 版。从终端运行:

open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files

Mac version. From terminal run:

open /Applications/Google\ Chrome.app/ --args --allow-file-access-from-files
芯好空 2024-10-21 07:41:20

在 Ubuntu 上:

chromium-browser --disable-web-security

有关更多详细信息/开关:

http:// /peter.sh/experiments/chromium-command-line-switches/

引用自

On Ubuntu:

chromium-browser --disable-web-security

For more details/switches:

http://peter.sh/experiments/chromium-command-line-switches/

Referenced from

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文