美文网首页
添加请求拦截器

添加请求拦截器

作者: nora_wang | 来源:发表于2019-06-27 11:12 被阅读0次

页面进行post请求时,需要用过请求拦截器处理优化。(登录,注册等)

import Axios from 'axios'
import qs from 'qs'
Vue.prototype.$axios = Axios
Vue.prototype.HOST = '/douban_api'

//添加请求拦截器
Axios.interceptors.request.use(function (config) {
    if(config.method=='post'){
      config.data = qs.stringify(config.data);
    }
    return config;
},function (error) {
    //请求错误
    return Promise.reject(error);
});
//添加响应拦截器
Axios.interceptors.response.use(function (response) {
    return response;
},function (error) {
    //响应错误
    return Promise.reject(error);
});

相关文章

网友评论

      本文标题:添加请求拦截器

      本文链接:https://www.haomeiwen.com/subject/wsplcctx.html