Answers for "axio put"

10

axios cdn

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
Posted by: Guest on July-16-2020
2

axios get status code

axios.get('/foo')
  .catch(function (error) {
    if (error.response) {
      console.log(error.response.data);
      console.log(error.response.status);
      console.log(error.response.headers);
    }
  });
Posted by: Guest on September-20-2020
4

axios put

const res = await axios.put('https://httpbin.org/put', { hello: 'world' });

res.data.headers['Content-Type']; // application/json;charset=utf-8
Posted by: Guest on June-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language