Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -11,7 +11,7 @@ request("https://api.openweathermap.org/data/2.5/weather?lat=" + userLat + "&lon | ... | @@ -11,7 +11,7 @@ request("https://api.openweathermap.org/data/2.5/weather?lat=" + userLat + "&lon |
11 | var LocationName = jsonObject.name; //지역 이름 | 11 | var LocationName = jsonObject.name; //지역 이름 |
12 | var WeatherCondition = jsonObject.weather[0].main; //현재 날씨 | 12 | var WeatherCondition = jsonObject.weather[0].main; //현재 날씨 |
13 | var Temp = jsonObject.main.temp; //현재 기온 | 13 | var Temp = jsonObject.main.temp; //현재 기온 |
14 | - console.log(body); | 14 | + //console.log(body); |
15 | console.log(LocationName); | 15 | console.log(LocationName); |
16 | console.log(WeatherCondition); | 16 | console.log(WeatherCondition); |
17 | console.log(Temp); | 17 | console.log(Temp); | ... | ... |
-
Please register or login to post a comment