小程序循环东西修改后显示
Posted 大橙子最美丽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序循环东西修改后显示相关的知识,希望对你有一定的参考价值。
toRevocateMark: function(event) { console.log(event); var index = event.currentTarget.dataset.index; var i = parseInt(index); var newss = this.data.newss; var that = this; wx.request({ url: app.globalData.baseurl + ‘api/news/revocateMark‘, header: { ‘token‘: wx.getStorageSync(‘token‘) // 默认值 }, data: { markid: newss[i].id }, success: function(res) { console.log(res) wx.showToast({ title: ‘取消成功‘, icon: ‘none‘, duration: 2000 }); newss[i].isMark = 0; that.setData({ ‘newss‘: newss }) } }) }
<text bindtap="toRevocateMark" data-index="{{index}}" wx:else>取消收藏</text>
以上是关于小程序循环东西修改后显示的主要内容,如果未能解决你的问题,请参考以下文章