“Как сделать почтовый запрос от Axios” Ответ

Axios отправить данные

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

Как сделать почтовый запрос от 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 запрос

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

Ответы похожие на “Как сделать почтовый запрос от Axios”

Вопросы похожие на “Как сделать почтовый запрос от Axios”

Больше похожих ответов на “Как сделать почтовый запрос от Axios” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования