微信小程序中對不同數(shù)據(jù)對象的setData操作
假設頁面的Data中內(nèi)容如下:
data:{
????????loginId:null,? ? ? //一個普通變量
????????teams:[],? ? ? ? ? //一個對象數(shù)組,每個對象有很多屬性
????????userInfo:null,? ?//一個對象,有很多屬性
}
三種數(shù)據(jù)類型的賦值方式為:
let teamIndex=10;
let theTeam='teams['+temIndex+']';
let theTeamName='teams['+temIndex+'].Name';
this.setData({
????????loginId:'admin',
????????[theTeam]:newTeam,
????????[theTeamName]:'火箭隊',
????????['userInfo.Name']:'李小明',
});
標簽: