微信小程序this.setData({})

写微信小程序this.setData({})应该是用的最多的代码之一
具体用法不做细说,最近学会了两个用法,记录下

局部更新
//更新局部变量
that.setData({
  ['dataList[' + index + '].triggered']: false
})

//数组新增一条数据
let index = this.data.messageList.length
this.setData({
  ['messageList[' + index + ']']: message
})

至于添加多条数据,还没试过

回调
this.setData({
  text: 'Set some data for updating view.'
}, function() {
// this is setData callback
})

官方文档应该就这一处有这句代码吧
https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html

你可能感兴趣的:(微信小程序this.setData({}))