<view class="weui-cell" wx:for="{{imagedata}}" wx:key="{{item.F_Path}}" data="{{item}}" style="font-size:28rpx;">
<view class="weui-uploader__file" bindtap="previewoldImage" id="{{item.F_Path}}">
<image src="{{item.F_Path}}" mode="aspectFit"></image>
</view>
<view wx:if="{{item.F_CZY==MyName && item.F_Date==CurDate}}" id="{{item.F_Path}}" bindtap="delImage">
删除
</view>
</view>
请问我以前这样写是没问题的,现在变成 这种错误了,是什么问题 wx:key="{{item.F_Path}}" does not look like a valid key name (did you mean wx:key="F_Path" ?)
写 wx:key="F_Path"
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/list.html#wx-key
你这个就是我说的 随便写,你写wx:key="d1sa23f4dsa54fsd56"都没事
以前item.id可以 现在报警告 改成id后编辑器会标红色 最后都改成index了
大侠,以后不加花括号?不用item?升级编译器也遇到这个问题了,不升级之前正常,升级之后就算退回原版本也还是提示这个警告了。咋整?
不能动态改变,也就是说不能使用{{}}
Now you can provide attr `wx:key` for a `wx:for` to improve performance.