这两天学习了vue如何从接口请求数据,所以,今天添加一点小笔记。

获取图片列表

var demo=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;

},function(error){

})

}

}

})

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

时间: 2017-06-19

Logo

前往低代码交流专区

更多推荐