VUE

VUE-axios网络请求

Vue开发

Posted by 松下百合子 on July 22, 2019

在项目中

文章转载自博客园

axios 模拟本地请求

参考

这里wallet.json 文件放到static 目录下面

1
2
3
4
5
6
7
8
this.axios.get('../../static/wallet.json')
          .then(data => {
            console.log(data)
            this.list=data.data
          })
          .catch(error => {
            console.log(error);
});