Skip to content

Instantly share code, notes, and snippets.

@gsahatqija
Created January 22, 2020 12:40
Show Gist options
  • Save gsahatqija/d08eba351831d1b7bf7e8fc7325db832 to your computer and use it in GitHub Desktop.
Save gsahatqija/d08eba351831d1b7bf7e8fc7325db832 to your computer and use it in GitHub Desktop.
Axios
axios({
method: 'post',
url: '/user/12345',
data: {
firstName: 'Fred',
lastName: 'Flintstone'
}
}).then((response) => {
});
axios.post('myurl', data).then((response) => {
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment