7***@qq.com
7***@qq.com
  • 发布:2024-07-05 17:21
  • 更新:2024-07-05 19:45
  • 阅读:100

【报Bug】编译支付宝小程序代码错误

分类:uni-app

产品分类: uniapp/小程序/微信

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 16

HBuilderX类型: 正式

HBuilderX版本号: 4.15

第三方开发者工具版本号: 3.8.21

基础库版本号: 1.25.10

项目创建方式: HBuilderX

操作步骤:
源码<view v-for="(item, index) in array12" key="index" class="u-loading-icondot"
>
</view>
编译支付宝小程序后 key错误应该是index现在是item.index
(0, _iterate2.default)(data['array12'], function (item, index) {
return _react2.default.createElement(View, {
key: item.index, className: "u-loading-icon
dot data-v-0fe228ae"
});
})

预期结果:

(0, _iterate2.default)(data['array12'], function (item, index) {
return _react2.default.createElement(View, {
key: index, className: "u-loading-icon__dot data-v-0fe228ae"
});
})

实际结果:

(0, _iterate2.default)(data['array12'], function (item, index) {
return _react2.default.createElement(View, {
key: item.index, className: "u-loading-icon__dot data-v-0fe228ae"
});
})

bug描述:

源码<view v-for="(item, index) in array12" key="index" class="u-loading-icondot"
>
</view>
编译支付宝小程序后 key错误应该是index现在是item.index
(0, _iterate2.default)(data['array12'], function (item, index) {
return _react2.default.createElement(View, {
key: item.index, className: "u-loading-icon
dot data-v-0fe228ae"
});
})
2024-07-05 17:21 负责人:DCloud_UNI_yuhe 分享
已邀请:
DCloud_UNI_yuhe

DCloud_UNI_yuhe

你代码里面是
<view v-for="(item, index) in array12" key="index" class="u-loading-icondot"></view>
:key="index"

要回复问题请先登录注册