Skip to content
Advertisement

How do I retrieve and transpose data to a webpage from an API?

I am having trouble accessing data from an API. Here is my code with a fake access code.

JavaScript

I am getting an error that says “Uncaught TypeError: Cannot read property ‘temp’ of undefined” Here is the API.

JavaScript

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

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
JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement