Skip to content
Advertisement

ReactJs json map returning undefined after loading

So I’m fetching an API call which I’m then trying to iterate over in order to display as a list. My code so far is:

JavaScript

And in fact, the json loads, a sample call is:

JavaScript

But I never get the iterating ul elements. I think this is somehow related to how I’m running my useEffect, because in logs I get undefined before the json call is completed, the correct json (although it doesn’t iterate/display as ul elements) and then another undefined.

Any pointers?

Advertisement

Answer

I think the problem is with the way fetch api’s promise is handled. .then((results) => console.log(results)) seems to return undefined and the following .then is receiving data as undefined. Please try like below and let me know if it works!

JavaScript

enter image description here

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