我已经设置了jQuery插件WhatWeather并且其工作正常,但有一点问题。
当我得到天气数据时,我会得到这个txt文件。
{ "data": { "current_condition": [ {"cloudcover": "100", "humidity": "100", "localObsDateTime": "2013-12-08 02:23 PM", "observation_time": "01:23 PM", "precipMM": "4.3", "pressure": "1008", "temp_C": "7", "temp_F": "45", "visibility": "7", "weatherCode": "296", "weatherDesc": [ {"value": "Light rain" } .....] }}
要在我的页面上显示数据,我使用“currentCondition.cloudcover”,然后我得到cloudcover 100,但我无法获得天气描述我已经尝试了“currentCondition.weatherDesc”,然后我得到输出“对象:对象“。而不是“小雨”如何从txt文件中获取“Light Rain”值?
答案 0 :(得分:2)
wheatherDesc
是一个对象本身的数组,因此请尝试currentCondition.weatherDesc[0].value
总的来说:
data.current_condition[0].weatherDesc[0].value