Skip to content
Advertisement

How can data from a GET request be displayed in HTML?

When I click on my button, I expect the data from the endpoint to be returned.

However, I get this error:

JavaScript

This is my function:

JavaScript

Advertisement

Answer

You’re replacing the innerHTML in every iteration. Did you mean to append to it?

You should also be using the properties from each element iteration. Trying to access them on response (an array) is why you get undefined values.

To format the results, you might want to use something like a <dl> which can be styled easily with CSS.

JavaScript

Then fetch your data, map the array to the formatted elements and append them to the results div…

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement