vue调用接口获取后台数据_vue如何从接口请求数据
这两天学习了vue如何从接口请求数据,所以,今天添加一点小笔记。获取图片列表var demo=new Vue({el:'#app',data: {imgList:[],getImgUrl: ''//存数据接口},created: function(){this.getImg()//定义方法},methods: {getImg: function(){var t...
·
这两天学习了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
更多推荐
已为社区贡献1条内容
所有评论(0)