gpt4 book ai didi

javascript - JSON 适用于一个地址,但不适用于另一个地址

转载 作者:行者123 更新时间:2023-11-30 12:47:19 25 4
gpt4 key购买 nike

所以我是一个完全的新手,正在尝试弄清楚如何正确使用 json。基本上我问的是为什么下面代码中的第一个按钮将检索并显示 json 而第二个和第三个按钮不会。在浏览器中访问时,据我所知,所有链接都以相同的格式显示,因此我看不出问题出在哪里。

http://jsfiddle.net/5QM82/4/

<html>
<head>
<script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script>
function doJSON1() {
$.getJSON('http://time.jsontest.com/?alloworigin=true', function (data) {
alert(JSON.stringify(data))
});
}
function doJSON2() {
$.getJSON('http://api.vircurex.com/api/get_info_for_1_currency.json?base=DOGE&alt=BTC', function (data) {
alert(JSON.stringify(data))
});
}
function doJSON3() {
$.getJSON('http://pubapi.cryptsy.com/api.php?method=singleorderdata&marketid=132', function (data) {
alert(JSON.stringify(data))
});
}
</script>
</head>
<body>
<h3>Get JSON1</h3>
<button onclick="doJSON1()">Get JSON</button>
<h3>Get JSON2</h3>
<button onclick="doJSON2()">Get JSON</button>
<h3>Get JSON3</h3>
<button onclick="doJSON3()">Get JSON</button>
</body>
</html>

最佳答案

当javascript不工作时(大多数浏览器F12)查看控制台,第二个和第三个链接分别抛出错误,如下:

XMLHttpRequest cannot load http://api.vircurex.com/api/get_info_for_1_currency.json?base=DOGE&alt=BTC. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://fiddle.jshell.net' is therefore not allowed access.
XMLHttpRequest cannot load http://pubapi.cryptsy.com/api.php?method=singleorderdata&marketid=132. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://fiddle.jshell.net' is therefore not allowed access.

至于这意味着什么以及如何解决它,另一个 stackoverflow 答案可能比我解释得更好,还有所有精彩的链接资源

No Access Controlled Origin

最终,如果托管资源(即您请求的文件)的服务器没有响应足够的 header (Access-Control-Allow-Origin 就是其中之一),那么您将无法访问资源另一个域

您确定第二个和第三个不是 JSONP API(即您将它们包含为 <script> 标记而不是 Ajax get),就像通过读取 URL 看起来好像它们应该是一个 api,但是可能不符合 CORS,因此是 JSONP。

关于javascript - JSON 适用于一个地址,但不适用于另一个地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22084946/

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