Skip to content

Instantly share code, notes, and snippets.

@chamatt
Created December 1, 2018 00:24
Show Gist options
  • Select an option

  • Save chamatt/61e09bb704b5e6d8e716c20761c1586f to your computer and use it in GitHub Desktop.

Select an option

Save chamatt/61e09bb704b5e6d8e716c20761c1586f to your computer and use it in GitHub Desktop.
Enviar Post
function EnviarPost(dadosDoFormulario) {
axios
.post("http://localhost:3000/posts", dadosDoFormulario)
.then(() => ObterPosts())
.catch(e => console.log(e));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment