“Как использовать Axios Post Method Axios” Ответ

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

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

Axios Получите метод

const axios = require('axios');

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
  .then(function (response) {
    // handle success
    console.log(response);
  })
  .catch(function (error) {
    // handle error
    console.log(error);
  })
  .then(function () {
    // always executed
  });
Friendly Fly

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 Post Method Axios

 const handleClick = async () => {
    let fd = new FormData();
    fd.append("name", name);
    fd.append("password", password);
    const rep = await axios
      .post("http://localhost/php/api/students/create.php", fd)
      .catch((err) => {
        console.log(err, "axios error");
      });
    console.log(rep.data);
  };
Blue Baboon

Ответы похожие на “Как использовать Axios Post Method Axios”

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

Больше похожих ответов на “Как использовать Axios Post Method Axios” по JavaScript

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

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