我MpVue 也可用Axios-- 速速来看!

安装配置自行百度!

问题1

我MpVue 也可用Axios-- 速速来看!_第1张图片
小程序环境和浏览器不一致导致的

解决方法

更改源文件

实现如下:

路径> node_modules > axios > dist > axios.js

找到这个 然后把它注释
axios.all = function all(promises) {
  return Promise.all(promises);
};

我们改用 adapter. 哈哈哈

完美解决!!!!!! 
    axios.defaults.adapter = function (config) {
        return new Promise ((resolve, reject) => {
            console.log(config)
        })
    }

差点忘了这个把它加上

我MpVue 也可用Axios-- 速速来看!_第2张图片
画红色线条标记

进入小程序看console看能不能看到打印信息

别忘了点赞哦!

你可能感兴趣的:(我MpVue 也可用Axios-- 速速来看!)