微信小程序for循环模板template里面怎么得到for循环的下标index呢
//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