请问下在列表循环中wx:key的保持状态是否不包含textarea?
<view wx: for = "{{nodeList}}" wx:key= "unique" > <view wx: if = "{{item.name == 'text'}}" > <textarea value= "{{item.content}}" auto-height= "{{true}}" focus= '{{true}}' > </textarea> </view> <view wx:elif= "{{item.name == 'img'}}" > <image src= '{{item.src}}' mode= "aspectFill" ></image> </view> </view> |
在列表循环中如果使用了textarea,即时加上wx:key依旧无法保持输入内容