收藏
回答

微信小程序跳转函数?

各位大神好,请问我要怎么在jump函数中获取good中的id,实现跳转。

回答关注问题邀请回答
收藏

1 个回答

  • 微盟
    微盟
    2023-02-26

    如果 good 是渲染到页面上的列表上的,可以给循环的项加上 data-id 这样的参数,拿在 js 层就可以通过 event.target.dataset.id 这样的方式拿到 id 了,比如

    <view wx:for="{{good}}" data-id="{{item.id}}" bind:tap="jump1">
      这里是渲染的数据
    </view>
    


    js 层

    Page({
      jump1(event) {
        const id = event.target.dataset.id;
      }
    })
    
    2023-02-26
    有用 1
    回复
登录 后发表内容