Not getting data on server
Unanswered
Scottish Fold posted this in #help-forum
Scottish FoldOP
For some reason the data gets returned properly if i go directly to the endpoint, but in react it just returns undefined? anyone got any clue to how to fix this?
1 Reply
@Scottish Fold For some reason the data gets returned properly if i go directly to the endpoint, but in react it just returns undefined? anyone got any clue to how to fix this?
Turkish Van
If You take a look at what it displays to You when You try to directly visit that endpoint, that is the exactly what an object returned by
Following that, You are trying to destruct the properties, from an object, that do not exist, so their values are always
await getArtworkById, inside of the ArtworkPage, looks like. It does not contain properties data and error but it directly returns You the the data that You are trying to read.Following that, You are trying to destruct the properties, from an object, that do not exist, so their values are always
undefined.