“Access-Control-Allow-Origin 不允许 Origin null”在 Chrome 中。为什么?

发布于 2024-10-20 11:54:01 字数 368 浏览 5 评论 0原文

我正在开发一些 Javascript 以在我的 PC 上本地运行。我正在使用 jQuery CSV 插件(http://plugins.jquery.com/project/csv)将 csv 文件加载到 javascript 数组中。该脚本很简单:

$(function(){
 $.get("file.csv", function(data){
  stuff = $.csv()(data);
 })
})

在 Firefox 中它工作正常,但在 Chrome 中它显示“Access-Control-Allow-Origin 不允许 Origin null”。这意味着什么?我找到了与此错误相关的有关跨服务器内容的各种线程,但我只是处理本地文件。

I am working on some Javascript to run locally on my PC. I am using a jQuery CSV plugin (http://plugins.jquery.com/project/csv) to load load a csv file into javascript arrays. The script is simple:

$(function(){
 $.get("file.csv", function(data){
  stuff = $.csv()(data);
 })
})

In Firefox it works fine but in Chrome it says "Origin null is not allowed by Access-Control-Allow-Origin". What does that mean? I find all sorts of threads about cross-server stuff related to this error but I am just working with local files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

帅气尐潴 2024-10-27 11:54:02

Chrome 不认为任意两个本地文件之间存在任何共同关系。

您可以使用选项“--allow-file-access-from-files”启动它,告诉它您不同意。

感谢上升大师尼克·克拉弗(Nick Craver)在我不久前问过同样的问题时提供的信息。

Chrome doesn't believe that there's any common relationship between any two local files.

You can start it with the option "--allow-file-access-from-files" to tell it you disagree.

Thanks to the ascendant master Nick Craver for this info when I asked essentially the same question some time ago.

御守 2024-10-27 11:54:02

如果您使用的是 Mac OS X,请打开终端,cd 到您的 Web 根目录并运行:

python -m SimpleHTTPServer

然后在 Chrome(或任何其他 Web 浏览器)中打开以下 URL:

http://0.0.0.0:8000

If you are using Mac OS X, open up the Terminal, cd to your web root and run:

python -m SimpleHTTPServer

Then open the following URL in Chrome (or any other web browser):

http://0.0.0.0:8000
若能看破又如何 2024-10-27 11:54:02

由于某些不清楚的原因,这就像跨域(每个浏览器在这个问题上的行为都有点不同,您甚至可以尝试 IE 并查看结果)。您应该尝试通过 Web 服务器运行它,并给它一个绝对路径,因为 javascript 在本地运行。

It's like crossdomain for some unclear reason (each browser acts a bit differently regarding this issue, you could even try IE and see the results). You should try and run it through a web server, and give it an absolute path since the javascript runs locally.

诺曦 2024-10-27 11:54:02

您可以尝试在您的 apache Web 服务器上运行它。它会起作用的。

You can try running it on your apache web server. It will work.

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