本篇內(nèi)容主要講解“微信小程序Page中怎么實(shí)現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“微信小程序Page中怎么實(shí)現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”吧!
成都創(chuàng)新互聯(lián)公司專注于企業(yè)成都營(yíng)銷網(wǎng)站建設(shè)、網(wǎng)站重做改版、寧都網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、成都商城網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為寧都等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。微信小程序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;", }) }, )}
到此,相信大家對(duì)“微信小程序Page中怎么實(shí)現(xiàn)data數(shù)據(jù)操作和函數(shù)調(diào)用”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)建站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!