码迷,mamicode.com
首页 > 其他好文 > 详细

this.setData is not a function解决

时间:2020-02-19 05:33:13      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:es6   image   一个   path   定义   回调   箭头   解决方法   function   

在写小程序时,通常在回调函数时使用this.setData({});时编译器会报this.setData is not a function的错误

因为this作用域指向问题 ,success函数实际是一个闭包 , 无法直接通过this来setData

解决方法有2个:

1 改造回调函数的方法为es6写法:

success: function(res){
  this.setData({});
},
改造为
success: (res)=>{
  this.setData({});
},
即可。
因为当我们使用箭头函数时,函数体内的this对象,就是定义时所在的对象,而不是使用时所在的对象。
 
2 在函数开始时定义一个变量指向this
addImg:function(){
  wx.chooseImage({
    success: function(res){
      var tempFilePaths= res.tempFilePaths;
      this.setData({
        picUrl: tempFilePaths[0],
   temPath: tempFilePaths
      });
    },
  });
}
改造为:
addImg:function(){
  var _this = this;
  wx.chooseImage({
    success: function(res){
      var tempFilePaths= res.tempFilePaths;
      _this.setData({
        picUrl: tempFilePaths[0],
   temPath: tempFilePaths
      });
    },
  });
}
即可。

this.setData is not a function解决

标签:es6   image   一个   path   定义   回调   箭头   解决方法   function   

原文地址:https://www.cnblogs.com/WaterGe/p/12329649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!