小程序
小游戏
企业微信
微信支付
扫描小程序码分享
Some keys are not unique while list updates
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
除了把基础库提高以外, <block wx:for="{{questionList}}" wx:key="index" > 改成 <block wx:for="{{questionList}}"> 就行了。 世界就是个草台班子
建议升级【调试基础库】,在详情-本地设置那里,我升级到3就没这个问题了
有结果了嘛?我也遇到了。最开始是数组嵌套对象,后来改成对象嵌套对象,也还是报这个错误。
<view wx:else="" style="padding-top:0px; height: {{windowHeight - statusBarHeight - titleBarHeight}}px; background-color: {{practiceBackColor.backColor}};"> <swiper bindchange="onswiperChange" style="position: relative; z-index: 9; width: 100%; height: 98%; transform: translateZ(0);" current="{{currentQuestionIndex}}" layout-type="transformer" transformer-type="scaleAndFade" > <block wx:for="{{questionList}}" wx:key="index" > <swiper-item> <view> {{questionList[index].question}} </view> </swiper-item> </block> </swiper> </view>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
除了把基础库提高以外, <block wx:for="{{questionList}}" wx:key="index" > 改成 <block wx:for="{{questionList}}"> 就行了。 世界就是个草台班子
建议升级【调试基础库】,在详情-本地设置那里,我升级到3就没这个问题了
有结果了嘛?我也遇到了。最开始是数组嵌套对象,后来改成对象嵌套对象,也还是报这个错误。
<view wx:else="" style="padding-top:0px; height: {{windowHeight - statusBarHeight - titleBarHeight}}px; background-color: {{practiceBackColor.backColor}};"> <swiper bindchange="onswiperChange" style="position: relative; z-index: 9; width: 100%; height: 98%; transform: translateZ(0);" current="{{currentQuestionIndex}}" layout-type="transformer" transformer-type="scaleAndFade" > <block wx:for="{{questionList}}" wx:key="index" > <swiper-item> <view> {{questionList[index].question}} </view> </swiper-item> </block> </swiper> </view>