小程序for循環綁定每組數據的id,並經過id獲取裏面某個數組的值的方法

WXML:this

<block wx:for="{{nums}}" wx:for-index='key' wx:for-item='item'>

  <view class="maxbox"  bindtap="imgchange"  id="{{key}}">
    <text class="nums">{{item.num}}</text>
  </view>

</block>

JS:spa

Page({  
    data: {
      nums:[
        {num:11},
        {num:22}
      ]
    }, 
    imgchange: function (event) {
      //獲取當前item的下標id  經過currentTarget.id
      var id = event.currentTarget.id;
        console.log(id);
      var nums = this.data.nums[id].num;
      console.log(nums);

    },
}) 
相關文章
相關標籤/搜索