0

我会使用这个 API 服务来了解更多关于 Javascript/Jquery 的信息。

我需要获取 JSON 以在 Gmap 中重新利用,但我不知道如何修改函数以实现我的目标。

你可以帮帮我吗?

非常感谢你!

演示 => http://jsfiddle.net/rpC3n/

链接 API:http ://api.citybik.es/

代码 =>

$.getJSON('http://api.citybik.es/networks.json', function (data) {
$.each(data.city) {
    $('#output').append(data.city);
}
});

非常感谢你!

4

1 回答 1

2

由于这是一个跨域请求,因此您需要使用 JSONP。

所以你的 jQuery 看起来像:

$.ajax({
    dataType: "jsonp",
    url: 'http://api.citybik.es/networks.json',
    success: function(data){
        $.each(data,function(){
            console.log(this);
            //do your gmap stuff here
        });
    },
    error: function(){
        console.log("Error",arguments);
    }
});

更新的小提琴: http: //jsfiddle.net/rpC3n/1/(检查你的控制台看看你返回的数据是什么样的)

于 2013-02-19T11:08:14.360 回答