I use fetch to get some stuff from the API:
fetch('http://facebook.imtqy.com/react-native/movies.json') .then( data => console.log(data), error => console.log(error) )
But I'll be back, this is the next object, not the actual data
_bodyBlob: Blob _bodyInit: Blob headers: Headers ok: true status: 200 statusText: undefined type: "default" url: "http://facebook.imtqy.com/react-native/movies.json"
Can someone explain to me what happened? Am I doing something wrong?
source share