我正在尝试完成这项工作,但我不明白为什么这总是返回“请求失败”?json 似乎是有效的(我知道 jQuery 对此很严格),也许是因为 httpS?
var geo_url = "https://spapi.cdnspstr.com/api/get_geo_ip";
var jqxhr = $.getJSON(geo_url, {
format: "json"
})
.done(function (json_data) {
alert("currency: " + json_data.data.currency);
})
.fail(function () {
alert("Request Failed");
});