最新文章專題視頻專題關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

微信小程序報錯:this.setData is not a function的解決辦法

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 22:28:56
文檔

微信小程序報錯:this.setData is not a function的解決辦法

微信小程序報錯:this.setData is not a function的解決辦法:微信小程序 報錯:this.setData is not a function 在page中定義的代碼如下,代碼會報錯:this.setData is not a function <strong> pasteEncryptedText:function()</strong>{ let decrypted
推薦度:
導(dǎo)讀微信小程序報錯:this.setData is not a function的解決辦法:微信小程序 報錯:this.setData is not a function 在page中定義的代碼如下,代碼會報錯:this.setData is not a function <strong> pasteEncryptedText:function()</strong>{ let decrypted

微信小程序 報錯:this.setData is not a function

在page中定義的代碼如下,代碼會報錯:this.setData is not a function

<strong> pasteEncryptedText:function()</strong>{ 
 let decryptedPass = this.data.decryptedPassword; 
 if (decryptedPass == '' ){ 
 wx.showToast({ 
 title: '請先輸入解密密碼', 
 mask: true, 
 success: function (res) { 
 setTimeout(function () { 
 wx.hideToast(); 
 }, 4000); 
 }, 
 }); 
 return; 
 }else{ 
 wx.getClipboardData({ 
 <strong>success: function (res)</strong> { 
 if ( res.data == '' ){ 
 wx.showToast({ 
 title: '剪貼板沒有內(nèi)容', 
 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); 
 } 
 } 
 }); 
 } 
 } 

問題分析:在函數(shù) pasteEncryptedText()里面嵌套調(diào)用另一個函數(shù) wx.showToast(),而setData()是在wx.showToast()中調(diào)用的,此時this.setData() 

中的this不是page,而是wx.showToast()這個對象了 

解決方法:

<strong> 在函數(shù)pasteEncryptedText()一開始處將this對象保存:</strong>let that = this; 
pasteEncryptedText:function(){ 
 let decryptedPass = this.data.decryptedPassword; 
<strong>let that = this;</strong> 
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: '剪貼板沒有內(nèi)容', 
 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>); 
 } 
 } 
 }); 
} 

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望通過本文能幫助到大家,謝謝大家對本站的支持!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:0731-84117792 E-MAIL:11247931@qq.com

文檔

微信小程序報錯:this.setData is not a function的解決辦法

微信小程序報錯:this.setData is not a function的解決辦法:微信小程序 報錯:this.setData is not a function 在page中定義的代碼如下,代碼會報錯:this.setData is not a function <strong> pasteEncryptedText:function()</strong>{ let decrypted
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top