gpt4 book ai didi

javascript - JavaScript 中的 Http GET 请求

转载 作者:行者123 更新时间:2023-12-03 12:20:24 24 4
gpt4 key购买 nike

如何在 JavaScript 中从 http get 请求获取 JSON?网址是:

    http://www.streamfinder.com/api/?api_codekey=[devkey]&do=get_genre_list&return_data_format=json

我已经尝试了很多东西,但似乎都不起作用...我已经尝试过这个,但它也不起作用。

function httpGet(theUrl)
{
var xmlHttp = null;

xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}

最佳答案

问题是我使用的是 json 而不是 jsonp。有效的代码是这样的:

$.ajax({
url: "URL",
type: 'GET',
dataType: 'jsonp',
success: function(res) {

alert(JSON.stringify(res));
}

});

关于javascript - JavaScript 中的 Http GET 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24467707/

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