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 trial

APIs Posting Data with fetch()

Eduardo Osorio
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Eduardo Osorio
Full Stack JavaScript Techdegree Graduate 20,847 Points

When making a POST request with fetch why do we chain a .then to get the response object?

I mean aren't we generally creating a resource in the server when we do a POST request.

So why would we be expecting a response if we are not trying to "get" something from the server?

Do all requests (POST, PUT, PATCH, DELETE, etc..) return a response? If so what is this response supposed to contain?

1 Answer

Though new to this, I believe you want to get a response to verify the action(GET, POST, etc) was performed and did not run into any errors.