黔优媒体网-软文媒体自助发稿平台!
  1. 行业资讯
  2. 正文

如何解决微信小程序报错:this.setData is not a function的问题

来源:黔优媒体网   时间:2024-09-19

这篇文章主要介绍了微信小程序报错:this.setdata is not a function的解决办法的相关资料,希望通过本文能帮助到大家解决这样类似的问题,需要的朋友可以参考下

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

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

 strong pasteEncryptedText:function() /strong { 
 let decryptedPass = this.data.decryptedPassword; 
 if (decryptedPass == #39; #39; ){ 
 wx.showToast({ 
 title: #39;请先输入解密密码 #39;, 
 mask: true, 
 success: function (res) { 
 setTimeout(function () { 
 wx.hideToast(); 
 }, 4000); 
 }); 
 return; 
 }else{ 
 wx.getClipboardData({ 
 strong success: function (res) /strong { 
 if ( res.data == #39; #39; ){ 
 wx.showToast({ 
 title: #39;剪贴板没有内容 #39;, 
 mask: true, 
 success: function (res) { 
 setTimeout(function () { 
 wx.hideToast(); 
 }, 4000); 
 }else{ 
 console.log(decryptedPass); 
 console.log(res.data); 
 strong this.setData({ 
 encryptedTextDecode: res.data, 
 originalTextDecode: desEncryptedDecrypted.decrypt(res.data, decryptedPass), 
 }); /strong 
 console.log(this.data.originalTextDecode); 
 }); 
 }

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

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

解决方法:

 strong 在函数pasteEncryptedText()一开始处将this对象保存: /strong let that = this;
pasteEncryptedText:function(){ 
 let decryptedPass = this.data.decryptedPassword;
 strong let that = this; /strong 
if (decryptedPass == #39; #39; ){ 
 wx.showToast({ 
 title: #39;请先输入解密密码 #39;, 
 mask: true, 
 success: function (res) { 
 setTimeout(function () { 
 wx.hideToast(); 
 }, 4000); 
 }); 
 return; 
}else{ 
 wx.getClipboardData({ 
 success: function (res) { 
 if ( res.data == #39; #39; ){ 
 wx.showToast({ 
 title: #39;剪贴板没有内容 #39;, 
 mask: true, 
 success: function (res) { 
 setTimeout(function () { 
 wx.hideToast(); 
 }, 4000); 
 }else{ 
 console.log(decryptedPass); 
 console.log(res.data); 
 strong that.setData /strong ({ 
 encryptedTextDecode: res.data, 
 originalTextDecode: desEncryptedDecrypted.decrypt(res.data, decryptedPass), 
 }); 
 console.log( strong that.data.originalTextDecode /strong 
 }); 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

如何解决微信小程序请求服务器手机预览请求不到数据的问题

如何解决微信公众号 提示:Unauthorized API function的问题

如何解决微信小程序中出现的错误:{"baseresponse":{"errcode":-80002,"errmsg":""}}

以上就是如何解决微信小程序报错:this.setData is not a function的问题的详细内容,更多请关注php中文网其它相关文章!

微信app下载

微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!


【免责申明】黔优媒体网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优媒体网官方立场,请读者仅做参考,本文标题:如何解决微信小程序报错:this.setData is not a function的问题;欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法/违规的内容,请您立即联系我们及时修正或删除。(邮箱号: kefu@qianu.com)
此操作需要登录,请先登录~
免费注册会员,尽享国内领先平台!