“Access-Control-Allow-Origin 不允许 Origin null”在 Chrome 中。为什么?
我正在开发一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
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.
如果您使用的是 Mac OS X,请打开终端,
cd
到您的 Web 根目录并运行:然后在 Chrome(或任何其他 Web 浏览器)中打开以下 URL:
If you are using Mac OS X, open up the Terminal,
cd
to your web root and run:Then open the following URL in Chrome (or any other web browser):
由于某些不清楚的原因,这就像跨域(每个浏览器在这个问题上的行为都有点不同,您甚至可以尝试 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.
您可以尝试在您的 apache Web 服务器上运行它。它会起作用的。
You can try running it on your apache web server. It will work.