微信小程序提示this.setData is not a function解决方案之一

 changeImg: function () {
    
    wx.chooseImage({
      count: 1, // 默认9
      sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
      sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
      success: function (res) {
        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
        var tempFilePaths = res.tempFilePaths;
        console.log(tempFilePaths);
        this.setData({
          userInfoImg: tempFilePaths[0]
        })
      }
    })
  }

以上是微信小程序上传图片错误示例

会提示出错

微信小程序提示this.setData is not a function解决方案之一_第1张图片

你会发现this.setData没写错啊,怎么会提示错误,

其中本人整理发现

微信小程序提示this.setData is not a function解决方案之一_第2张图片

在这个里面直接用this会报错

正确写法

微信小程序提示this.setData is not a function解决方案之一_第3张图片


希望误入坑的同志要跳坑啊

你可能感兴趣的:(微信小程序提示this.setData is not a function解决方案之一)