Created
March 8, 2021 16:55
-
-
Save jaydson/e942ad59aecd1824345b7d10da436941 to your computer and use it in GitHub Desktop.
This file contains 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
fetch(URL_TO_POST, { | |
method: 'post', | |
body: new FormData(document.querySelector('#my-form')) | |
}) | |
.then(function(response) { | |
// trate a resposta aqui | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment