我有以下 JSON 数据:
{
"city": {
"city_code":"DE0001516",
"post":"28195",
"forecast": {
"2012-09-10": {
"p":"24",
"w":"10",
"06:00": {
"p":"5",
"w":"20",
"tn":"15",
"tx":"21",
"w_txt":"wolkig"
}
}
}
}
}
通常我通过这个函数读取数据:
function(data){ $("#").html(data.city.post); }
如何从 06:00 获取数据?
function(data){ $("#").html( data.city.forecast.2012-09-10.06:00.w); }
不起作用。我认为这与时间和日期格式有关。