vue 全局axios封装

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_15206589/article/details/81777943
// 在main.js中添加全局,getCokie是获取cookie里的csrftoken值,Qs是用于序列化Vue.prototype.$axios = (ajax) => {
  axios({
    method: ajax.type,
    url: api + ajax.url,
    data: Qs.stringify(ajax.data)
  }).then((response) => {
    ajax.success(response)
  }).catch((error) => {
    console.log(error)
    // eslint-disable-next-line
    ajax.fail
  })
}
Vue.prototype.$get = (ajax) => {
  axios.get(api + ajax.url, {
    params: ajax.data,
    headers: {
      'X-CSRFToken': getCookie('csrftoken')
    }
  }).then((response) => {
    ajax.success(response)
  }).catch((error) => {
    console.log(error)
    // eslint-disable-next-line
    ajax.fail
  })
}
Vue.prototype.$delete = (ajax) => {
  axios.get(api + ajax.url, {
    params: ajax.data,
    headers: {
      'X-CSRFToken': getCookie('csrftoken')
    }
  }).then((response) => {
    ajax.success(response)
  }).catch((error) => {
    console.log(error)
    // eslint-disable-next-line
    ajax.fail
  })
}
Vue.prototype.$post = (ajax) => {
  axios.post(api + ajax.url, Qs.stringify(ajax.data), {
    headers: {
      'X-CSRFToken': getCookie('csrftoken')
    }
  }).then((response) => {
    ajax.success(response)
  }).catch((error) => {
    console.log(error)
    // eslint-disable-next-line
    ajax.fail
  })
}
Vue.prototype.$put = (ajax) => {
  axios.post(api + ajax.url, Qs.stringify(ajax.data), {
    headers: {
      'X-CSRFToken': getCookie('csrftoken')
    }
  }).then((response) => {
    ajax.success(response)
  }).catch((error) => {
    console.log(error)
    // eslint-disable-next-line
    ajax.fail
  })
}

对应的使用

this.$get({

url: ...,

data:...,

sueccess:(response)=>{},

fail:()=>{}

})

猜你喜欢

转载自blog.csdn.net/qq_15206589/article/details/81777943