this.setData is not a function解决
Posted waterge
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this.setData is not a 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解决的主要内容,如果未能解决你的问题,请参考以下文章
小程序填坑--TypeError: this.setData is not a function
微信小程序,weixin,this.setData is not a function 报错求帮助