本篇內(nèi)容主要講解“微信小程序Page中怎么實現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“微信小程序Page中怎么實現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供匯川網(wǎng)站建設(shè)、匯川做網(wǎng)站、匯川網(wǎng)站設(shè)計、匯川網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、匯川企業(yè)網(wǎng)站模板建站服務(wù),十多年匯川做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
微信小程序Page中data數(shù)據(jù)獲取和設(shè)置
一、Page中data數(shù)據(jù)的獲取和設(shè)置:
1、設(shè)置data數(shù)據(jù) this.setData(object)
setData() 參數(shù)格式:接受一個對象,以 key,value 的形式表示將 this.data 中的 key 對應(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中怎么實現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!