在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
官方文档是这样的: changeItemInArray: function() { // you can use this way to modify a danamic data path this.setData({ 'array[0].text':'changed data' }) }, changeItemInObject: function(){ this.setData({ 'object.text': 'changed data' }); },
this.setData({ 'array[0].text':'changed data' })
var price = 'goods['+index+'].price' this.setData({ [price]:'changed data' }) 例: toggle: function (e) { // console.log(e) var index = e.target.id; let showConObj = 'catalog['+index+'].showCon'; console.log(showConObj); this.setData({ [showConObj]: !this.data.catalog[index].showCon }) }
|
请发表评论