var demo=new Vue({
el:'#app',
data: {
imgList:[],
getImgUrl: '' //存数据接口
},
created: function(){
this.getImg() //定义方法
},
methods: {
getImg: function(){
var that = this;
that.$http({ //调用接口
method:'POST',
url:"https://api.douban.com/v2/book/1220562" //this指data
}).then(function(response){ //接口返回数据
this.imgList=response.data;
},function(error){
})
}
}
})
写一个练手的demo 但是提示
vue如何解决跨域问题呢
饮歌长啸
相关分类