“Axios реагирует” Ответ

Axios реагирует

$ npm install react-axios
Victorious

Как использовать Axios получить

const req = async () => {
  const response = await axios.get('https://dog.ceo/api/breeds/list/all')
  console.log(response)
}
req() // Calling this will make a get request and log the response.
Grotesque Gaur

Axios реагирует

yarn add axios //yarn install
npm install axios //npm install
@iinaamasum

Axios реагирует

const axios = require('axios').default;

// 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
  });

// Optionally the request above could also be done as
axios.get('/user', {
    params: {
      ID: 12345
    }
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  })
  .then(function () {
    // always executed
  });  

// Want to use async/await? Add the `async` keyword to your outer function/method.
async function getUser() {
  try {
    const response = await axios.get('/user?ID=12345');
    console.log(response);
  } catch (error) {
    console.error(error);
  }
}
pape mactar ndiaye

Использование Axios отправьте запрос GET на адрес:

// 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 в React

$ yarn add axios
Outrageous Oystercatcher

Ответы похожие на “Axios реагирует”

Вопросы похожие на “Axios реагирует”

Больше похожих ответов на “Axios реагирует” по JavaScript

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

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