jquery で getJSON 関数を使用して json ファイルを読み込もうとしていますが、Web ページに表示するデータを取得する前にこれを行っていません。
ここに私のコードがあります
var url = "http://api.openweathermap.org/data/2.5/forecast?lat=35&lon=139&callback=?" ;
$.getJSON(url, function(res) {
$('#result').html('<p>lon: ' + res.lon + '</p>');
});
ここに私のjsonファイルがあります
{"coord":
{
"lon":-0.12574,
"lat":51.50853
},
"sys":
{
"country":"GB",
"sunrise":1380780339,
"sunset":1380821577
},
"weather":
[{
"id":521,
"main":"Rain",
"description":"proximity shower rain",
"icon":"09n"
}],
"base":"gdps stations",
"main":
{
"temp":290.43,
"pressure":1008,
"humidity":88,
"temp_min":289.15,
"temp_max":291.48
},
"wind":
{
"speed":3.1,
"deg":140
},
"rain":
{
"1h":1.65
},
"clouds":
{
"all":40
},
"dt":1380823503,
"id":2643743,
"name":"London",
"cod":200
}