微信小程序报错:this.setData is not a function的解决办法
微信小程序报错:this.setDataisnotafunction
在page中定义的代码如下,代码会报错:this.setDataisnotafunction
pasteEncryptedText:function(){ letdecryptedPass=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:'剪贴板没有内容', mask:true, 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()这个对象了
解决方法:
在函数pasteEncryptedText()一开始处将this对象保存:letthat=this;
pasteEncryptedText:function(){ letdecryptedPass=this.data.decryptedPassword;
letthat=this; 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:'剪贴板没有内容', mask:true, success:function(res){ setTimeout(function(){ wx.hideToast(); },4000); }, }) }else{ console.log(decryptedPass); console.log(res.data); that.setData({ encryptedTextDecode:res.data, originalTextDecode:desEncryptedDecrypted.decrypt(res.data,decryptedPass), }); console.log(that.data.originalTextDecode); } } }); }
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望通过本文能帮助到大家,谢谢大家对本站的支持!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。