微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

微信小程序报错:this.setData is not a function的解决办法

微信小程序 报错:this.setData is not a function

在page中定义的代码如下,代码会报错:this.setData is not a function

rush:js;">

pasteEncryptedText:function()

{ let decryptedPass = this.data.decryptedPassword; if (decryptedPass == '' ){ wx.showToast({ title: '请先输入解密密码',mask: true,success: function (res) { setTimeout(function () { wx.hidetoast(); },4000); },}); return; }else{ wx.getClipboardData({

success: function (res)

{ if ( res.data == '' ){ wx.showToast({ title: '剪贴板没有内容',success: function (res) { setTimeout(function () { wx.hidetoast(); },4000); },}) }else{ console.log(decryptedPass); console.log(res.data);

this.setData({ encryptedTextDecode: res.data,originalTextDecode: desEncryptedDecrypted.decrypt(res.data,decryptedPass),});

console.log(this.data.originalTextDecode); } } }); } }

问题分析:

函数 pasteEncryptedText()里面嵌套调用一个函数 wx.showToast(),而setData()是在wx.showToast()中调用的,此时this.setData()

中的this不是page,而是wx.showToast()这个对象了

解决方法

rush:js;">

函数pasteEncryptedText()一开始处将this对象保存:

let that = this;
rush:js;"> pasteEncryptedText:function(){ let decryptedPass = this.data.decryptedPassword;
rush:js;">

let that = this;

if (decryptedPass == '' ){ wx.showToast({ title: '请先输入解密密码',success: function (res) { setTimeout(function () { wx.hidetoast(); },}); return; }else{ wx.getClipboardData({ success: function (res) { if ( res.data == '' ){ wx.showToast({ title: '剪贴板没有内容',}) }else{ console.log(decryptedPass); console.log(res.data);

that.setData

({ encryptedTextDecode: res.data,}); console.log(

that.data.originalTextDecode

); } } }); }

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望通过本文能帮助到大家,谢谢大家对本站的支持

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。