gpt4 book ai didi

javascript - 在javascript中从外部源获取json

转载 作者:行者123 更新时间:2023-11-28 01:13:34 25 4
gpt4 key购买 nike

Json 与 javascript 和 jquery 相关的问题。尝试使用 javascript 加载一些 JSON。

我使用它来工作:

在这里查看:http://jsfiddle.net/5pjha/789/

var url = "http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true";

$.getJSON(url, function (json) {
alert(JSON.stringify(json.results));
});

但它不适用于以下网址,这是为什么?

https://poloniex.com/public?command=return24hVolume

https://bittrex.com/api/v1/public/getmarkets

https://api.mintpal.com/v1/market/summary/

以下 url 是不正确的 JSON 吗?

谢谢

最佳答案

Google 的 api 将 Access-Control-Allow-Origin header 设置为 *,以便您可以跨域访问它。

虽然您提供的其他网址没有,所以您会收到如下错误:

XMLHttpRequest cannot load https://api.mintpal.com/v1/market/summary/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://fiddle.jshell.net' is therefore not allowed access.

关于javascript - 在javascript中从外部源获取json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24135420/

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