About the antd Table plug-in Table question antd

use the Table form plug-in and find that there is a Warning prompt on the console. How to solve this prompt? Baidu said to add rowKey= "id", and found that there was still a warning prompt.

Warning: Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary key.
Mar.13,2021

is there any duplicates in the id field of your data, or whether there is an id field at all


set rowKey= {(record, index) = > index}

    <Table pagination={pagination} rowKey={(record, index) => index} columns={columns} dataSource={table.list} size="middle" bordered/>
Menu