“So erstellen Sie eine Postanforderung von Axios” Code-Antworten

Axios senden Postdaten

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

So erstellen Sie eine Postanforderung von Axios

import axios from 'axios';

async makeRequest() {
  try {
    const response = await axios.post('your_request_url_here', {
    // Enter your body parameters here
    });
  }
  catch(e) {
    // Handle your error here
  }
}

// Axios returns a promise and hence you can use .then(), .catch for error
// handling if you don't want to use async/await(use try/catch for error 
// handling)
Smiling Skunk

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

Ähnliche Antworten wie “So erstellen Sie eine Postanforderung von Axios”

Fragen ähnlich wie “So erstellen Sie eine Postanforderung von Axios”

Weitere verwandte Antworten zu “So erstellen Sie eine Postanforderung von Axios” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen