wx:for 循环循环中动态的设置变量

<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的最下方

阅读 8.9k
1 个回答
<view class="flex-comment" hidden="{{item.isHidden}}">
    <input type="text" value="{{commentValue}}" class="commentInput" placeholder="{{placeholder}}" data-replyTo="{{commentReply}}" bindconfirm="bindCommentConfirm" bindblur="bindCommentBlur" focus="{{commentFocus}}" confirm-type="send" />
</view>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏