欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

小程序 Now you can provide attr "wx:key" for a "wx:for" to improve performance.

程序员文章站 2024-02-20 16:02:40
...

在wxml中添加:

<view wx:for="{{array}}" > {{item}} </view>

报错:

VM4222:2 ./pages/index/index.wxml
(anonymous) @ VM4222:2
VM4222:3  Now you can provide attr "wx:key" for a "wx:for" to improve performance.
  12 |   </view>
  13 |   <view bindtap="viewTap"> 点我 </view>
> 14 |   <view wx:for="{{array}}" > {{item}} </view>
     |    ^
  15 | </view>
  16 | 

解决:

上文为警告,不处理不影响程序运行。

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

代码如下:

<view wx:for="{{array}}" wx:key="key"> {{item}} </view>

这样就解决了。

相关标签: 小程序 报错