react报错:Warning: Each child in a list should have a unique “key“ prop.

server/2024/12/23 8:03:34/

我是万万没想到的,使用Popconfirm不添加key属性也会报错:

@react-refresh:160Warning: Each child in a list should have a unique "key" prop. Check the render method of `Cell`. Seehttps://reactjs.org/link/warning-keys for more information. athttp://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:33866:34 at Cell3 (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:37961:25) athttp://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:38077:22 at tr at BodyRow (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:38316:25) at tbody at Provider3 (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:37860:22) at Body (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:38520:19) at table at div at div athttp://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:39317:23 at div at Table (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:39327:25) at div at div at Spin2 (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:32044:25) at SpinFC2 (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:32089:34) at div at InternalTable (http://localhost:5173/node_modules/.vite/deps/chunk-2Q4JEYIA.js?v=2824dff9:43767:34) at div at div at LicenseList (http://localhost:5173/src/pages/StoreRun/serve/list/index.tsx?t=1714118344716:36:22) at InnerLoadable2 (http://localhost:5173/node_modules/.vite/deps/@loadable_component.js?v=2824dff9:155:34) at LoadableWithChunkExtractor2 at Loadable

给Popconfirm添加key属性后就好了.......

害我找了好久才找到这种神奇的bug

 


http://www.ppmy.cn/server/23651.html

相关文章

uniapp H5实现签名

第一种&#xff1a;跳转签名页面 1、创建审核页面audit.vue <template><view><uni-section title""><view class"auditClass"><uni-forms :model"baseFormData" ref"baseFormRef" :rules"rules&quo…

C语言 | Leetcode C语言题解之第50题Pow(x,n)

题目&#xff1a; 题解&#xff1a; double myPow(double x, int n){if(n 0 || x 1){return 1;}if(n < 0){return 1/(x*myPow(x,-(n1)));}if(n % 2 0){return myPow(x*x,n/2);}else{return x*myPow(x*x,(n - 1)/2);} }

Java包装类,128陷阱

包装类 基本数据类型都有自己对应的包装类&#xff0c;因为Java本质是面向对象编程的&#xff0c;一切的内容在Java看来都是对象 但是基本数据类型没有类&#xff0c;也没有对象&#xff0c;这样就有了矛盾 所以诞生了基本类型的包装类 基本数据类型&#xff1a; byte,short,…

【Hive】自定义函数从编写到应用的整个流程(以UDF为例)

1. 编写UDF程序 以Java为例&#xff0c;编写一个字符串反转的函数&#xff08;工程依赖部分略&#xff09;&#xff1a; package com.example;import org.apache.hadoop.hive.ql.exec.UDF; import org.apache.hadoop.hive.ql.exec.Description; import org.apache.hadoop.hiv…

JVM(Java虚拟机)功能特点、垃圾回收机制

简介 JVM&#xff08;Java虚拟机&#xff09;是一种虚拟的计算机执行环境&#xff0c;用于执行Java字节码。Java虚拟机不仅仅用于执行Java语言编写的程序&#xff0c;还可以执行其他编译成Java字节码的语言&#xff08;如Kotlin、Scala等&#xff09;编写的程序。JVM的主要目标…

西电超算使用方法-简易版

一、引言 西电超算不错&#xff0c;我很喜欢。本文仅供自己学习使用。 二、环境搭建 搭建环境需要有一些依赖库&#xff0c;但是其实西电超算说明手册并没有写的非常清楚。因此&#xff0c;这次实战演示一下&#xff0c;写一个运行sh文件脚本并提交作业。 1、选择GPU还是CP…

20个 Golang 常见面试问题

1 Goroutine 在 Golang中的作用是什么&#xff1f; Goroutines 使得 Golang 能够并发执行多线程任务&#xff0c;允许函数在不相互阻塞的情况下同时运行。 2 如何在 Golang 中处理共享资源的并发访问&#xff1f; Golang 提供了同步原语&#xff0c;如互斥锁&#xff08;mu…

Golang Colly爬取图片gorm存储数据

语言:Golang 库:Iris/Colly/gorm 运行结果 text/html; charset=utf-8 It is image 20240429222029_0_0.jpg Saved file: images\20240429222029_0_0.jpg text/html; charset=utf-8 It is image 20240429222030_1_0.jpg Saved file: images\20240429222030_1_0.jpg It is ima…