小編給大家分享一下微信小程序Page中data數(shù)據(jù)操作和函數(shù)調(diào)用的示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),柳南企業(yè)網(wǎng)站建設(shè),柳南品牌網(wǎng)站建設(shè),網(wǎng)站定制,柳南網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,柳南網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶(hù)成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。微信小程序Page中data數(shù)據(jù)獲取和設(shè)置
一、Page中data數(shù)據(jù)的獲取和設(shè)置:
1、設(shè)置data數(shù)據(jù) this.setData(object)
setData() 參數(shù)格式:接受一個(gè)對(duì)象,以 key,value 的形式表示將 this.data 中的 key 對(duì)應(yīng)的值改變成 value。其中 key 可以非常靈活,以數(shù)據(jù) 路徑的形式給出,如 array[2].message,a.b.c.d,并且不需要在 this.data 中預(yù)先定義。
this.setData({ ; encryptionPage: 'display:block', });
2、獲取data數(shù)據(jù) this.data.object
var text=this.data.text
Page({ data: { encryption: "color: green; border-bottom-color: green; border-bottom-size: 1px; border-bottom-style: solid;", decryption: "color: gray; border-bottom-color: #F5F5F5; border-bottom-size: 1px; border-bottom-style: solid;", encryptionPage:'display:block', decryptionPage:'display:none', originalText:'', encryptedText:'', originalTextDecode:'', encryptedTextDecode:'', encryptedPassword:'', decryptedPassword:'', },
setEncryption: function(e){ this.setData({ encryptionPage: 'display:block', decryptionPage: 'display:none', encryption: "color: green; border-bottom-color: green; border-bottom-size: 1px; border-bottom-style: solid;", decryption: "color: gray; border-bottom-color: #F5F5F5; border-bottom-size: 1px; border-bottom-style: solid;", }) }, )}
以上是“微信小程序Page中data數(shù)據(jù)操作和函數(shù)調(diào)用的示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!