[Vue warn]: Duplicate keys detected: 'A2019043010767'. This may cause an update error.
借鉴了网友的意见,解决了,在此总结一下:原本这个v-for是这样写的<li v-for="customer of customerDataList" :key="customer.corporationId">改为了:<li v-for="(customer,index) of customerDataList" :key="index">原因:Dup...
·
借鉴了网友的意见,解决了,在此总结一下:
原本这个v-for是这样写的
<li v-for="customer of customerDataList" :key="customer.corporationId">
改为了:
<li v-for="(customer,index) of customerDataList" :key="index">
原因:Duplicate keys detected(检测到重复的密钥)
key值是必须唯一的
更多推荐
已为社区贡献2条内容
所有评论(0)