完整警告
遇到这问题的都是陪着微信小程序好久的程序员了。
意思是说,你 for
循环的 key
不应该是这样写吗 wx:key="index"
?,为什么要加 {{ }}
?
VM202:1 ./pages/my/my.wxml
wx:key="{{index}}" does not look like a valid key name (did you mean wx:key="index" ?)
2 | <image src="{{img}}"></image>
3 |
> 4 | <view wx:for="{{arr}}" wx:key="{{index}}">
| ^
5 | {{index}} {{item}}
6 | </view>
7 |
解决
更新后的官方文档:https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/list.html#wx:key
去掉 {{ }}
,直接写在 ""
里面。
微信官方文档给出的示例: