例子:Vue 配合 vue-resource 从接口获取数据

Posted 名字被占用

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了例子:Vue 配合 vue-resource 从接口获取数据相关的知识,希望对你有一定的参考价值。

vue-resource 是 vue 的一个与服务器端通信的 HTTP 插件,用来从服务器端请求数据。

结合例子——图片列表来写一下 Vue获取接口数据。

html

<div id="app">
    <ul>
        <li>
            <img v-for="imgItem in imgList" v-bind:src="imgItem.img" alt="" width="100%" height="100%"/>
        </li>
    </ul>
</div>

vue :

var vm = new Vue({
        el:‘#app‘,
        data: {
            imgList:[],
            getImgUrl: ‘‘    //这里写接口地址
        },
        created: function(){
            this.getImg()              //定义方法
        },
        methods: {
            getImg: function(){
                var that = this;
                that.$http({           //调用接口
                    method:‘GET‘,
                    url:this.getImgUrl   //this指data
                }).then(function(response){  //接口返回的数据
                    this.imgList=response.data; // promise的then成功之后,将response返回的数据data,保存到imgList数组里
                },function(error){
                    console.log(error);
                })
            }
        }
    })

 

以上是关于例子:Vue 配合 vue-resource 从接口获取数据的主要内容,如果未能解决你的问题,请参考以下文章

vue-resource.js的get和post的正确用法

vue系列之vue-resource

Vue-resource和Axios对比以及Vue-axios

vue-resource

vue-resource

使用Vue-resource完成交互