1霉涨、小程序數(shù)據(jù)綁定
data:{
? ? ? ?"fromtype": "" ,?
? ? ? ?"personstatus":"",
? ? ? ? "farmstatus": "",
}
//動(dòng)態(tài)修改data里面的數(shù)據(jù)
this.setData({
? ? ? "fromtype": “1”,
? ? ? "personstatus": "true",
? ? ? "farmstatus": "true"
? ? })
需要使用this.setData:選擇this.setData修改數(shù)據(jù),可以動(dòng)態(tài)更新頁(yè)面數(shù)據(jù),如果只是使用this.data.fromtype = "xxx",則只能修改js里面是數(shù)據(jù)。
2.小程序在單個(gè)頁(yè)面設(shè)置樣式時(shí),若給body設(shè)置背景色,就用
page{
? height: 100%;
? width:100%;
? background-color: #FFFFFF;
}