Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSeokhyun Wie
Full Stack JavaScript Techdegree Graduate 21,606 PointsFetch failed loading: POST "http://localhost:5000/api/users"
I have the message,
it.brandonwie@gmail.com is successfully signed up and authenticated!
but, also have
Fetch failed loading: POST "http://localhost:5000/api/users".
Can anyone know why it happens?
2 Answers
Steven Abaco
Full Stack JavaScript Techdegree Graduate 17,883 PointsI had the same problem.
Change line 10 in api/routes
to
let users = [] ;
instead of const users = [] ;
I noticed api/routes
was using const
instead of let
to create the Users variable .
After changing the assignment to let
it worked. Seems like const
was not allowing the app push into the array.
jpizzle
36,395 PointsI received that POST http... error code b/c I did not turn on the express server. Hope that helps
Steven Parker
231,248 PointsSteven Parker
231,248 PointsTo get help with your code, you need to show the code itself. Perhaps the best way to share code is to make a snapshot of your workspace and post just the link to it here.