idx怎么引用
来源:18-3 template模板的使用
慕莱坞1421067
2018-09-14
请问idx怎么引用?
写回答
1回答
-
在 .wxml 文件里多传一个参数过去:
<block wx:for="{{posts_key}}" wx:for-item="item" wx:for-index="index">
<template is="postItem" data="{{item,index}}"/>
</block>
然后在 template文件里直接用就好
<view class='post-author-date'>
<text class='post-date'>{{"发布于 " + item.date}}{{index}}</text>
</view>
012018-09-14
相似问题