Last active
February 15, 2021 15:42
-
-
Save kesarawimal/863b2109514558ba4dd803372e035d89 to your computer and use it in GitHub Desktop.
FormSubmit AJAX Documentation: Axios
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
// https://github.com/axios/axios | |
axios.defaults.headers.post['Content-Type'] = 'application/json'; | |
axios.post('https://formsubmit.co/ajax/[email protected]', { | |
name: "FormSubmit", | |
message: "I'm from Devro LABS" | |
}) | |
.then(response => console.log(response)) | |
.catch(error => console.log(error)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment