1// axios POST request
2const options = {
3 url: 'http://localhost:3000/api/home',
4 method: 'POST',
5 headers: {
6 'Accept': 'application/json',
7 'Content-Type': 'application/json;charset=UTF-8'
8 },
9 data: {
10 name: 'David',
11 age: 45
12 }
13};
14
15axios(options)
16 .then(response => {
17 console.log(response.status);
18 });
1const axios = require('axios');
2
3// Make a request for a user with a given ID
4axios.get('/user?ID=12345')
5 .then(function (response) {
6 // handle success
7 console.log(response);
8 })
9 .catch(function (error) {
10 // handle error
11 console.log(error);
12 })
13 .then(function () {
14 // always executed
15 });
16
17// Optionally the request above could also be done as
18axios.get('/user', {
19 params: {
20 ID: 12345
21 }
22 })
23 .then(function (response) {
24 console.log(response);
25 })
26 .catch(function (error) {
27 console.log(error);
28 })
29 .then(function () {
30 // always executed
31 });
32
33// Want to use async/await? Add the `async` keyword to your outer function/method.
34async function getUser() {
35 try {
36 const response = await axios.get('/user?ID=12345');
37 console.log(response);
38 } catch (error) {
39 console.error(error);
40 }
41}
1const axios = require('axios');
2axios.post('/user', {
3 firstName: 'Fred',
4 lastName: 'Flintstone'
5 })
6 .then(function (response) {
7 console.log(response);
8 })
9 .catch(function (error) {
10 console.log(error);
11 });
1const req = async () => {
2 const response = await axios.get('https://dog.ceo/api/breeds/list/all')
3 console.log(response)
4}
5req() // Calling this will make a get request and log the response.
1import qs from 'qs';
2const data = { 'bar': 123 };
3const options = {
4 method: 'POST',
5 headers: { 'content-type': 'application/x-www-form-urlencoded' },
6 data: qs.stringify(data),
7 url,
8};
9axios(options);
1const axios = require('axios');
2
3// Make a request for a user with a given ID
4axios.get('/user?ID=12345')
5 .then(function (response) {
6 // handle success
7 console.log(response);
8 })
9 .catch(function (error) {
10 // handle error
11 console.log(error);
12 })
13 .then(function () {
14 // always executed
15 });
16