使用JQuery / Ajax从API检索数据

时间:2017-07-12 01:00:56

标签: javascript jquery ajax api openweathermap

enter image description here

我正在尝试将openweathermap api中的信息导入我的应用程序。我尝试使用ajax来获取数据,但它显示为未定义。

   $(function(){

        var $temp = $('#temperature');
        var $humidity = $('#humidity')
        temp = document.getElementById("temperature");
        $.ajax({
            type: 'GET',
            url: 'http://api.openweathermap.org/data/2.5/weather?q={' +
                  markers["title"] + '}&APPID=' + APPID,
            success: function(data){
              console.log('success', data);
              $temp.append(data.main.temp);
              $humidity.append(data.main.humidity);
            }

        });

      });

  var contentString = '<div id="content">'+
      '<div id="siteNotice">'+
      '</div>'+
      '<h1 id="firstHeading" class="firstHeading">' + markers["title"] + '</h1>'+
      '<div id="bodyContent">'+
      '<div class = "temperature"><span id = "temperature"> '+ temp +' </span>&degC</div>' +
      '<div class = "humidity">'+ humidity +'<span id = "humidity"></span>%' +
      '</div>';`

2 个答案:

答案 0 :(得分:0)

您需要JSON.parse()您的数据。 $ ajax可能会返回一个字符串,因此您需要先解析数据,然后才能从中获取属性。

您收到未定义错误的原因是因为您无法检索字符串的属性。

答案 1 :(得分:0)

按地理坐标:

        var apiUrl = "http://api.openweathermap.org/data/2.5/find?lat=" + latitude + "&lon=" + longitude + "&units=imperial&cnt=7&appid=" + APIkey;

使用地理位置为纬度和经度提供值。

或仅提供City Id's

var apiUrl = 'http://api.openweathermap.org/data/2.5/weather?q=London,uk&appid=' + APIkey;