gpt4 book ai didi

javascript - 如何将 API 请求中的 JSON 获取到我页面的 javascript 中?

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

我正在尝试使用网络 API 以 JavaScript 返回 JSON 文件。使用 Alchemy API,将调用以下 URL:

http://access.alchemyapi.com/calls/url/URLGetTextSentiment?url=http%3A%2F%2Fwww.macrumors.com%2F2013%2F11%2F05%2Fapple-releases-itunes-11-1-3-with-equalizer-and-performance-improvements%2F&apikey=[secret]&outputMode=json

这将对 macrumors 文章进行情绪分析。但是,我不确定如何将 JSON 文件实际转换为 javascript。有人知道怎么做吗?

最佳答案

您正在访问的 URL 似乎返回 JSON,因此请使用 ajax get 请求

jQuery.get() :

var Url = 'http://access.alchemyapi.com/calls/url/URLGetTextSentiment?url=http%3A%2F%2Fwww.macrumors.com%2F2013%2F11%2F05%2Fapple-releases-itunes-11-1-3-with-equalizer-and-performance-improvements%2F&apikey=[secret]&outputMode=json'


$.get(
Url,
function(data, status, xhr){
alert(data);
}
);

关于javascript - 如何将 API 请求中的 JSON 获取到我页面的 javascript 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19802773/

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