继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

在vuejs页面中通过vue-resource获取本地static文件夹下的json文件

可爱的pppp
关注TA
已关注
手记 4
粉丝 0
获赞 5

1、在项目路径下安装vue-resource:

npm install vue-resource --save

2、在main.js中全局注册vue-resource:

import VueResource from 'vue-resource';
Vue.use(VueResource);

3、在页面直接使用即可:

useResource(){
    this.$http({
        url:'http://localhost:8002/static/idol.json',
        method:'GET',
        data:{
            // aaa:""
        },
        headers:{
            'content-Type':'x-www-form-urlencoded'
        }
    }).then(
        function(res){
            //成功的处理
            this.tableDataTest = res.data.result;
            // this.tableData = res.data.result;
            console.log('vue-resource调用本地json:'+res);
            console.log(res);
        },
        function(res){
            //失败的处理
            console.log('error!!!');
        })
}

4、获取成功,获取到的为一个response对象:

https://img4.mukewang.com/5d6cbe7f0001fb1b06180769.jpg

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP