Fetching Data from An API in React Native

preview_player
Показать описание
Hello guys in this video I'm gonna teach you how to fetch data from an API in react native
api source
Github source code here 👇👇
Рекомендации по теме
Комментарии
Автор

Just wanted to say i skimmed through a half dozen videos that were extremely long and convoluted. This was a very nice, simply explained, execution of a Data fetch. Great content.

specsydanny
Автор

thanks very much brother ...after a long serch i got solution from you...! 👍

shebeeradimaly
Автор

fire bro, u shall be great...keep it up

aarontechs
Автор

That's super bro
Thanks for the video 👍

hetty
Автор

I am using http on a localhost endpoint and getting "Network Request Failed" error. Some have suggested i edit the MANIFEST file but i am a beginner using expo. I cant find the Manifest file. Can you please help?

chippandenga
Автор

Nice work.
I got this error, can you please assist me.


undefined is not a function (near '...data.map...')

my code

return(
<View>
{
loading ? (<Text>loading...</Text>) : (
data.map((post)=>(
<View>
<Text>{post.title}</Text>
</View>
))
)}
</View>
);
}

atteypascal