1.map 返回 html 模板 未加 key
加上key 即可 ,注意加在最外层
ts
renderlist.map((item)=>(
<div key={item.code}>{item.name}</div>
))
2.antd table 没有 key 或 rowkey

解决方法:
1.dataSource 的每一列数据 增加一个 key
2.使用 rowKey 来指定 dataSource 的主键
ts
// 比如你的数据主键是 uid
return <Table rowKey="uid" />;
// 或
return <Table rowKey={(record) => record.uid} />;