I am having trouble accessing data from an API. Here is my code with a fake access code.
JavaScript
x
15
15
1
$(function () {
2
3
var $data = ('#data');
4
$.ajax({
5
type: 'GET',
6
url: 'http://api.openweathermap.org/data/2.5/weather?lat=47.6062&lon=-122.3321&units=imperial&appid=a0bfe75fbff13d4040af7eb66d1d82b5',
7
success: function (data) {
8
$.each(data, function (i, item) {
9
$data.append('<li>Temp: ' + item.main['temp'] + '</li>');
10
});
11
}
12
});
13
14
});
15
I am getting an error that says “Uncaught TypeError: Cannot read property ‘temp’ of undefined” Here is the API.
JavaScript
1
45
45
1
{
2
"coord": {
3
"lon": -122.3321,
4
"lat": 47.6062
5
},
6
"weather": [
7
{
8
"id": 721,
9
"main": "Haze",
10
"description": "haze",
11
"icon": "50d"
12
}
13
],
14
"base": "stations",
15
"main": {
16
"temp": 61.36,
17
"feels_like": 61.2,
18
"temp_min": 55.49,
19
"temp_max": 66.31,
20
"pressure": 1022,
21
"humidity": 85
22
},
23
"visibility": 10000,
24
"wind": {
25
"speed": 1.01,
26
"deg": 319,
27
"gust": 5.01
28
},
29
"clouds": {
30
"all": 1
31
},
32
"dt": 1627137674,
33
"sys": {
34
"type": 2,
35
"id": 2004026,
36
"country": "US",
37
"sunrise": 1627130239,
38
"sunset": 1627185243
39
},
40
"timezone": -25200,
41
"id": 5809844,
42
"name": "Seattle",
43
"cod": 200
44
}
45
I want to be able to access temp and description and append them or add them to my page. It does not need to be a list, but I want to style it in css. Feel free to change any of the code.
JavaScript
1
2
1
{"coord":{"lon":-122.33,"lat":47.61},"weather":[{"id":721,"main":"Haze","description":"haze","icon":"50d"}],"base":"stations","main":{"temp":64.09,"feels_like":63.91,"temp_min":57.43,"temp_max":69.62,"pressure":1022,"humidity":79},"visibility":10000,"wind":{"speed":1.99,"deg":325,"gust":3},"clouds":{"all":1},"dt":1627141350,"sys":{"type":2,"id":2004026,"country":"US","sunrise":1627130238,"sunset":1627185243},"timezone":-25200,"id":5809844,"name":"Seattle","cod":200}```
2
Advertisement
Answer
To access temp
you don’t need to use .each
loop you can access them directly i.e : data.main.temp
and for accessing the weather -> description you can use .each
loop and inside each loop use item.description
.
Demo Code :
JavaScript
1
54
54
1
var $data = ('#data');
2
//dummy json
3
var data = {
4
"coord": {
5
"lon": -122.33,
6
"lat": 47.61
7
},
8
"weather": [{
9
"id": 721,
10
"main": "Haze",
11
"description": "haze",
12
"icon": "50d"
13
}],
14
"base": "stations",
15
"main": {
16
"temp": 64.09,
17
"feels_like": 63.91,
18
"temp_min": 57.43,
19
"temp_max": 69.62,
20
"pressure": 1022,
21
"humidity": 79
22
},
23
"visibility": 10000,
24
"wind": {
25
"speed": 1.99,
26
"deg": 325,
27
"gust": 3
28
},
29
"clouds": {
30
"all": 1
31
},
32
"dt": 1627141350,
33
"sys": {
34
"type": 2,
35
"id": 2004026,
36
"country": "US",
37
"sunrise": 1627130238,
38
"sunset": 1627185243
39
},
40
"timezone": -25200,
41
"id": 5809844,
42
"name": "Seattle",
43
"cod": 200
44
}
45
/* $.ajax({
46
//your codes....
47
*/
48
console.log(data.main.temp) //use it like this...
49
$.each(data.weather, function(i, item) {
50
console.log(item.description) //get description like this..
51
})
52
/*
53
}
54
});*/
JavaScript
1
1
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>