微信小程序for循环模板template里面怎么得到for循环的下标index呢
发布于 6 年前 作者 jinming 20240 次浏览 来自 问答

//for循环模板postItem 

<block wx:for="{{postList}}" wx:for-item="item" wx:for-index="idx">

<template is="postItem" data="{{...item}}"/>

</block>


//template模板获取for循环里的下标idx的值     

<template name="postItem">

    <text class="post-title">{{idx}}</text>

</template>


//现在问题是模板里获取不到for循环里的下标idx

回到顶部