Skip to content

Instantly share code, notes, and snippets.

@chamatt
Last active November 28, 2018 15:58
Show Gist options
  • Select an option

  • Save chamatt/7f2829d23f8438f5ee09c75047583e56 to your computer and use it in GitHub Desktop.

Select an option

Save chamatt/7f2829d23f8438f5ee09c75047583e56 to your computer and use it in GitHub Desktop.
Exemplo Axios POST
axios
.post("https://jsonplaceholder.typicode.com/posts", {
title: "titulo",
body: "corpo do texto",
userId: 1
})
.then(resposta => FuncaoQueSeraExecutada(resposta));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment