1.下载axios   命令npm install axios 太慢的话用淘宝镜像安装
在src文件加下的main.js中添加
     import axios from 'axios'
    Vue.prototype.axios = axios;

2.

created(){
      axios.get('../../static/data.json')
    .then(function (response) {
        console.log(response.data);
    })
    .catch(function (error) {
        console.log(error);
    });

      
}

vue中axios获取数据问题,axios is not defined

然后一直在报错,弄了一下午烦躁的不知道哪里出错,网上其他人的方法都试过了,其实很简单,请求数据的时候,给axios加上this就好了~

created(){
      this.axios.get('../../static/data.json')
    .then(function (response) {
        console.log(response.data);
    })
    .catch(function (error) {
        console.log(error);
    });

      
}

相关文章: