Axios 速查表

axios

install

  • npm install axios
  • <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
  • <script src="https://unpkg.com/axios/dist/axios.min.js"></script>

example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
axios.get('/user?ID=12345')
  .then(function (response) {
    // handle success
    console.log(response);
  })
  .catch(function (error) {
    // handle error
    console.log(error);
  })
  .finally(function () {
    // always executed
  });