小程序: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>