先在命令行
npm install es6-promise --save-dev
安装好后
import promise from 'es6-promise';
promise.polyfill();
//浏览器调试看到后端明明正确返回了数据,但是axios的回调中的response就是没有data字段,最后把responseType: 'json'这个配置相干掉竟然成功了
// axios异步请求接口统一配置
util.ajax = axios.create({
baseURL: Api.baseURL,
timeout: 30000
// responseType: 'json' // default IE不支持该配置项,启用后返回的数据将没有 data字段
});
网友评论