gpt4 book ai didi

jquery - 如何从此链接获取json数据

转载 作者:行者123 更新时间:2023-12-01 04:21:30 24 4
gpt4 key购买 nike

http://just4dummy.com/Haggle/index.php/api/haggle/bills/user/1/format/json

如何从此链接控制台 Firefox 中的数据。

如何从此链接获取 json 数据并在 html 标签内使用它。

请帮助我。谢谢

最佳答案

您需要使用 JSONP 才能跨域访问它。

$.getJSON('http://just4dummy.com/Haggle/index.php/api/haggle/bills/user/1/format/jsonp?callback=?', function(data) {
console.log(data);
});

我将“json”更改为“jsonp”,并添加了“?callback=?”到网址。服务器是否支持 JSONP 是由服务器决定的,不是所有服务器都支持,只是这个服务器正好支持而已。

返回的数据是一个对象数组,你可以这样读取:

$.each(data, function(){
console.log(this.account);
});

从这里您可以轻松地将数据添加到 HTML 表格中。

关于jquery - 如何从此链接获取json数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10046691/

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