微信小程序data-传参

Posted 前端伪大叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序data-传参相关的知识,希望对你有一定的参考价值。

<view bindtap="change" data-index="{{index}}">哈哈</view>

change(event){
    const dataset = event.target.dataset;
    const index = dataset.index
}

 

以上是关于微信小程序data-传参的主要内容,如果未能解决你的问题,请参考以下文章