<view wx:for="{{list}}" class="card-box2" bindtap="selectMusic" wx:key="index"> <view class="card2" wx:for="{{item.musicInfo}}" wx:for-index="childindex" bindtap="selectMusic" data-index="{{childindex}}" data-bigindex="{{index}}"> <image src="{{item.imgUrl}}"/> <view class="mutli2" style="font-size: 13px;">{{item.title}} <view>{{item.singer}}</view> </view> </view> </view>
时间: 2023-08-05 13:07:28 浏览: 131
SelectMusic
这是一个小程序的 wxml 文件代码,使用了 wx:for 来遍历一个名为 list 的数组,将其渲染为多个 class 为 card-box2 的视图。每个 card-box2 包含多个 class 为 card2 的子视图,每个子视图中包含一张图片和两个文本视图。其中,wx:key 属性用于指定唯一标识符,多个子视图需要用 bindtap 绑定同一个事件 selectMusic,data-index 和 data-bigindex 分别表示子视图在 musicInfo 数组中的索引和在 list 数组中的索引。
阅读全文