this.$http.jsonp(api).then(function(response){ console.log(response); console.log(this); this.list=response.body.result }, function(err){ console.log(err); })
这里用箭头函数和不用箭头函数this都是指向同一个,都是vueconponent就是当前的组件
本文共 283 字,大约阅读时间需要 1 分钟。
this.$http.jsonp(api).then(function(response){ console.log(response); console.log(this); this.list=response.body.result }, function(err){ console.log(err); })
这里用箭头函数和不用箭头函数this都是指向同一个,都是vueconponent就是当前的组件
转载于:https://www.cnblogs.com/fpcbk/p/10865465.html