美文网首页
Warning: Each child in a list sh

Warning: Each child in a list sh

作者: 旋风猫 | 来源:发表于2022-07-05 09:51 被阅读0次

    昨天在Ant desgin pro开发新建一个列表页面遇到警告错误:Warning: Each child in a list should have a unique "key" prop. Check the render method of Body. See https://reactjs.org/link/warning-keys for more information.

    找了大半天,各种render的key都差异化设置完了,还是会出现,让人头疼的很。后来去对比了其他页面时,发现少了rowKey设置,原来:

    <ProTable
        key='table'
        search={{
            labelWidth: 'auto',
        }}
        ...
    />
    

    后来改为这样就好了(前提是你的列表每项数据里必须有id字段):

    <ProTable
        rowKey="id" 
        key='table'
        search={{
            labelWidth: 'auto',
        }}
        ...
    />
    

    相关文章

      网友评论

          本文标题:Warning: Each child in a list sh

          本文链接:https://www.haomeiwen.com/subject/pzxsbrtx.html