多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
``` 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; ```