Created
January 22, 2020 12:40
-
-
Save gsahatqija/d08eba351831d1b7bf7e8fc7325db832 to your computer and use it in GitHub Desktop.
Axios
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({ | |
| 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