2021
08-26
08-26
vue中如何简单封装axios浅析
把axios注入到Vue中importaxiosfrom'axios';Vue.prototype.$axios=axios;importaxiosfrom'axios'axios.defaults.timeout=5000;//响应时间axios.defaults.headers.post['Content-Type']='application/json;charset=UTF-8';//配置请求头axios.defaults.withCredentials=true;//带cookieaxios.defaults.baseURL='http://localhost:8080/';//配置接口地址//POST传参序列化(添加请求拦截器...
继续阅读 >