We are looking for a React custom hooks examples for the plain fetch post api.
With async await javascript.
When’s looking for one on Google we saw a lot with promises and Axios
We did not see any with fetch post api
a link to tutorial would be appreciated
or if someone can post on this form an example would be appreciated.
While we are primarily here to help people with their Free Code Camp progress, we are open to people on other paths, too. Some of what you are asking is pretty trivial in the Free Code Camp context, so you might find that if you’re not getting the instruction and material you need in your current studies, the FCC curriculum will really help you get started. At a modest guess I’d say investing a 4-5 hours working through the curriculum here will really pay off. You can find the curriculum at https://www.freecodecamp.org/learn.
With your current questions, we don’t have enough context to know what you already know or don’t know, so it is impossible to guide you without just telling you the answer (which we won’t do).
It is pretty typical on here for people to share a codepen / repl.it / jsfiddle example of what they have tried so that anyone helping has more of an idea of what help is actually helpful.
Please provide some example of what you’ve tried and I’m sure you’ll get more help.
You should read up on promises and async/await. Rewriting a fetch promise chain to async/await is fairly simple.
Rewriting Axios code to fetch is also simple as they are almost identical in their basic usage. One of the main basic differences is Axios returns JSON by default without needing to use .json()
If you are unable to rewrite either of the two to use fetch with async/await a little homework is in order.
There are literally tons of examples you can find by searching for it, just look at the results in the Google search I gave you. Here is one of the first results.
One improvement that might be made to that example is using an abort controller instead of a boolean flag.