小程序:Now you can provide attr `wx:key` for a `wx:for` to improve performance. 的解决方案


在wx:for后面添加wx:key="key" 可消除警告 

<view wx:for="{{thisWeekMovies}}" wx:for-index="idx" wx:for-item="item"   wx:key="key" >
    <view class="videos">
      <image src="{{ item.img }}" class="banner"></image>
      <text class="title">{{ item.title }}</text>
      <text>{{ item.content }}</text>
    </view>
  </view>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM