🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` import axios from 'axios' import storage from './storage' const http = axios.create({ //baseURL: process.env.API_ROOT, timeout: 40000 }); http.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded' //http.defaults.headers.post['Content-Type'] = 'application/json'; http.defaults.headers.post['Access-Control-Allow-Origin'] = '*'; http.defaults.withCredentials = true; ```