收藏
回答

如何获取通过wx:for创建的view的id

框架类型 问题类型 提审时间 AppID
小程序 Bug 2019-02-28 wx48ad05e305d6b443


<view class='listPage' hover-class='listPageSelect' wx:for="{{sharedCourseInfo}}" data-index='{{index}}' style="flex-direction:column;" bindtap='selectSharedCoursePage' wx:for-index="index">
    <view class='justForGetID'>{{sharedCourseInfo[index]['_id']}}</view>
 
    <view class='flex-wrp-row item'>
      <view class='item-left flex-wrp-row'>
        <text class='textOfHead'>{{sharedCourseInfo[index]['courseName']}}</text>
      </view>
      <view class='item-right flex-wrp-row'>
        <text class='textOfHead'>{{sharedCourseInfo[index]['teacherName']}}</text>
      </view>
    </view>
  </view>


老哥们,我通过wx:for创建view,想在点击的时候获取点击的是第几块view,方便我进行下一步页面的渲染,请问下怎么在点击时获取第几个view呢

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

1 个回答

  • 是小白啊
    是小白啊
    2019-02-28

    data-index="{{index}}"  可传入index


    2019-02-28
    有用
    回复
登录 后发表内容