源代码
<view wx:for="arr" wx:key="index" ></view>
这段代码会被编译成
<view v-for="(item,index) in (buttons)" :key="item.index" ></view>
实际上这个item上没有index的,key值取的不正确,应该取index
<view wx:for="arr" wx:key="index" ></view>
<view v-for="(item,index) in (buttons)" :key="item.index" ></view>
实际上这个item上没有index的,key值取的不正确,应该取index
1***@qq.com (作者)
https://github.com/feliciaZH/wx-components-key.git
下载下来之后,然后打app的包【运行到App基座】,完了之后查看产物:
wxcomponents\hello\index.vue
2023-03-07 18:46
DCloud_UNI_WZF
回复 1***@qq.com: 看起来是写法的问题,参考文档 中 wx:key 的说明
2023-03-08 21:43