小程序
小游戏
企业微信
微信支付
扫描小程序码分享
const {item} = e.currentTarget.dataset ?这个什么意思,没有找到相关说明,说是小程序的事件传递方式。
保存为全局数据,然后循环显示。
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
const {item} = e.currentTarget.dataset
等同于
const item = e.currentTarget.dataset.item
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
微信社区真香~~~
ES6的 对象解构 写法
附上阮一峰大神的链接
http://es6.ruanyifeng.com/#docs/destructuring
<view wx:for="{{list}}" wx:for-index="index" wx:key="index" wx:for-item="coupon" data-coupon="{{coupon}}" bindtap="couponClick"></view>
js: let coupon = e.currentTarget.dataset.coupon
在js里,使用上面这种方式,可以获取到coupon,就能识别出用户点击的是哪个。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
const {item} = e.currentTarget.dataset
等同于
const item = e.currentTarget.dataset.item
微信社区真香~~~
ES6的 对象解构 写法
附上阮一峰大神的链接
http://es6.ruanyifeng.com/#docs/destructuring
<view wx:for="{{list}}" wx:for-index="index" wx:key="index" wx:for-item="coupon" data-coupon="{{coupon}}" bindtap="couponClick"></view>
js: let coupon = e.currentTarget.dataset.coupon
在js里,使用上面这种方式,可以获取到coupon,就能识别出用户点击的是哪个。