时间:2019-04-30 来源:小程序工厂
可以尝试:
// 方法 1
_this.setData({
'arrayTest[0]': '1'
})
// 方法 2
const newArray = _this.data.arrayTest.slice()
newArray[0] = '1'
_this.setData({
arrayTest: newArray
})
而不要直接赋值。
去弄清楚页面声明周期,加载的生命周期事件顺序
https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page.html
进这个页面,搜索 setData,文档里写的很清楚哦