解决antD中关于table组件中报这样的警告warning.js?2149:7 Warning: [antdv: Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary key.]问题

报错:

从报错中看就是加上主键进行约束,在表格属性加上约束即可。

解决方案:

 <a-table :columns="columns"
               :row-key="record => record.id"
               :data-source="ebooks1"
               :pagination="pagination"
               :loading="loading"
      >
posted @ 2021-12-10 11:30  久曲健  阅读(1374)  评论(0编辑  收藏  举报