【微信小程序】使用setDate修改属性时不影响其他属性
this.setDate({
info:{
a:50
}
})
上述方法除过a以外的其他属性也会被覆盖,从而成为空值
可使用以下方法
this.setData({
['info.userImg']:this.data.fileList
})
this.setDate({
info:{
a:50
}
})
可使用以下方法
this.setData({
['info.userImg']:this.data.fileList
})