http://just4dummy.com/Haggle/index.php/api/haggle/bills/user/1/format/json
如何从此链接控制 Firefox 中的数据。
如何从此链接获取 json 数据并在 html 标签中使用它。
请帮我。谢谢
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 表中。
$.getJSON('http://just4dummy.com/Haggle/index.php/api/haggle/bills/user/1/format/json', function(data) {...});