“Axios erhalten Anfrage” Code-Antworten

Axios CDN

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
Funny Frog

Header in Axios

axios.post('url', {"body":data}, {
    headers: {
    'Content-Type': 'application/json'
    }
  }
)
Salo Hopeless

Axios Post mit Header

// Send a POST request
axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  },
  headers: {'Authorization': 'Bearer ...'}
});
Victor Grk

Axios Post

const axios = require('axios');
axios.post('/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });
Gleaming Goat

Axios erhalten Anfrage

const axios = require('axios');

async function makeGetRequest() {

  let res = await axios.get('http://webcode.me');

  let data = res.data;
  console.log(data);
}

makeGetRequest();
Panicky Parrot

Axios erhalten Anfrage

const axios = require('axios');

async function makeRequest() {

    const config = {
        method: 'get',
        url: 'http://webcode.me'
    }

    let res = await axios(config)

    console.log(res.status);
}

makeRequest();
Panicky Parrot

Ähnliche Antworten wie “Axios erhalten Anfrage”

Fragen ähnlich wie “Axios erhalten Anfrage”

Weitere verwandte Antworten zu “Axios erhalten Anfrage” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen