Answers for "axios.create to fetch"

6

axios.interceptors.response.use

// Add a response interceptor
HTTP.interceptors.response.use(function (response) {
 return response
}, function(error) {
 if (error.response.status === 401) {
  store.dispatch('logout')
  router.push('/login')
 }
 return Promise.reject(error.response.data)
})
Posted by: Guest on September-17-2020
5

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