vue里面的this指向

  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