Last active
November 28, 2018 15:58
-
-
Save chamatt/7f2829d23f8438f5ee09c75047583e56 to your computer and use it in GitHub Desktop.
Exemplo Axios POST
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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