gpt4 book ai didi

javascript - 无法从我的网络服务器读取本地服务器上的 json 文件

转载 作者:行者123 更新时间:2023-11-30 10:48:03 25 4
gpt4 key购买 nike

所以我的网络服务器上有一个名为 array.json 的 json 文件,我打算在我的网络应用程序中本地读取这个文件(目前),然后在我上线后在不同的域上创建这个 json我自己归档,这里是它包含的数据。

 {"h1": "cmPanel", "h2" : "cmAuto", "h3": 0}

当我尝试读取文件时没有收到响应,这是为什么?

这是我读取文件的代码;

$.getJSON('http://www.foobar.com/array.json', function(data){
alert(data);
});

我也尝试添加 &callback=? 但我仍然没有收到任何消息,请你帮忙!

最佳答案

Quoting official docs:

Due to browser security restrictions, most "Ajax" requests are subject to the same origin policy; the request can not successfully retrieve data from a different domain, subdomain, or protocol.

Script and JSONP requests are not subject to the same origin policy restrictions.

More info about Same Origin Policy

To work around it, look into JSONP.

关于javascript - 无法从我的网络服务器读取本地服务器上的 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7162801/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com