yxAxios.js 263 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 import axios from 'axios' // 请求头,headers 信息 axios.defaults.headers['X-Requested-With'] = 'XMLHttpRequest' // 默认 post 请求,使用 application/json 形式 axios.defaults.headers.post['Content-Type'] = 'application/json' export default axios