<view wx:for="{{assignmentStudentComments}}" class="reply-area">
<view data-replyto="{{item.assignmentStudent}}" data-index="{{index}}" bindtap="bindReplyTap">
</view>
<view class="flex-comment" hidden="{{????????}}">
<input type="text" value="{{commentValue}}" class="commentInput" placeholder="{{placeholder}}" data-replyTo="{{commentReply}}" bindconfirm="bindCommentConfirm" bindblur="bindCommentBlur" focus="{{commentFocus}}" confirm-type="send" />
</view>
</view>
在一个循环中,如何设置动态的变量,我要一开始所有的input输入框都是隐藏的,然后点击上面的一个VIEW ,然后显示将对应的input 显示出来, input的hidden变量如何动态的设置? 不考虑把input写在循环外的做法,因为这样不管点击循环中的哪个VIEW都会使INPUT显示在最后,我希望显示在所点击VIEW的下方而不时所有VIEW的最下方