如何访问yahoo weather的地理数据节点中的文本?

时间:2014-03-12 20:14:51

标签: javascript ajax xml latitude-longitude yahoo-weather-api

我正在使用z weatherfeed插件。

它已经从yweather api中提取了大部分数据,但我需要纬度和经度。

插件获取每个item元素的数据,例如:

html += '<div class="weatherCountry">'+ feed.location.country +'</div>';

但是,如果我试试这个......

html += '<div class="latitude">' + feed.item.geo.lat + '</div>';
html += '<div class="longitude">' + feed.item.geo.long + '</div>';

...它无法获取这些元素的数据。

我应该如何访问geo:latgeo:long

以下是一个实例:http://jsbin.com/sibafeke/1/edit

1 个答案:

答案 0 :(得分:0)

可以通过以下方式访问geo:latgeo:long的数据:

html += '<div class="latitude">' + feed.item.lat + '</div>';
html += '<div class="longitude">' + feed.item.long + '</div>';