300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 小程序 Now you can provide attr wx:key for a wx:for to improve performance.

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

时间:2023-02-11 05:36:32

相关推荐

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

在wxml中添加:

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

报错:

VM4222:2 ./pages/index/index.wxml(anonymous) @ VM4222:2VM4222: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>

这样就解决了。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。