“Axios API Post Anfrage” Code-Antworten

Axios API Post Anfrage

import qs from 'qs';
const data = { 'bar': 123 };
const options = {
  method: 'POST',
  headers: { 'content-type': 'application/x-www-form-urlencoded' },
  data: qs.stringify(data),
  url,
};
axios(options);
Amused Ant

Mit Axios senden Sie eine Get -Anfrage an die Adresse:

// GET request for remote image
axios({
  method: 'get',
  url: 'http://bit.ly/2mTM3nY',
  responseType: 'stream'
})
  .then(function(response) {
  response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});
Tame Toad

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 API Post Anfrage”

Fragen ähnlich wie “Axios API Post Anfrage”

Weitere verwandte Antworten zu “Axios API Post Anfrage” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen