调用API后,解析getJSON()的结果

时间:2017-03-07 19:55:00

标签: javascript jquery getjson

我的编译器似乎没有进入getJSON()函数,因为控制台上没有任何内容。此外,结果是嵌套的json格式,我不确定我是否正在编写正确的代码来访问嵌套数据。还要,我是否需要指定方法的类型,即使用此方法获取GET?这是指向我的Codepen的链接Link

  var url=api+"lat="+lat+"&lon="+lon+"&APPID=3346fe595f3b91ee6307913c28042901"+cb;
       //console.log(url);
       $.getJSON(url,function(jsonResult){
         //alert("hey");
         //console.log("hello");
         var temp=jsonResult.main.temp;
         $("#results").html(temp);
       }).fail(function() {
    console.log( "Request Failed: " );
});

0 个答案:

没有答案