标签:image style number ges 程序 dataset oda http set
list: [ { id: 0, mode: 1, src: ‘https://s2.yzlcq.cn/images/10070.png‘, text: ‘0‘ }, { id: 1, mode: 1, src: ‘https://s2.yzlcq.cn/images/10070.png‘, text: ‘1‘ }, { id: 2, mode: 1, src: ‘https://s2.yzlcq.cn/images/10070.png‘, text: ‘2‘ } ],
onDelete(e) { var no = Number(e.currentTarget.dataset.index); console.log(no) var that = this wx.showModal({ title: ‘提示‘, content: ‘您确认删除该图片和描述信息吗?确定将删除图片和描述信息‘, success(res) { if (res.confirm) { var ls = that.data.list; ls.splice(no, 1) console.log(ls) that.setData({ list: [] }) //先置空,不然渲染界面不正确 ,一定要注意 that.setData({ list: ls }) } } }) }
微信小程序 setData 数组 渲染问题 删除之后的数组渲染不正确
标签:image style number ges 程序 dataset oda http set
原文地址:https://www.cnblogs.com/microestc/p/11171929.html