react异常警告:Each child in a list should have a unique “key” prop
原因:Dom在渲染数组时,需要一个key,不然嵌套数组时会引起歧义
return(
<div key={index}>
<Text delete={!record.enable}>{item.customFieldName}</Text>
</div>
)
加了key为何还报Each child in a list should have a unique “key“ prop
<> </>
是Fragment的缩写形式,遍历使用时要加key,而缩写形式是不可以加key的,所以要这样写:文章来源:https://www.toymoban.com/news/detail-549360.html
<React.Fragment key={'your key'}>
//...
</React.Fragment>
文章来源地址https://www.toymoban.com/news/detail-549360.html
到了这里,关于react异常 Each child in a list should have a unique “key” prop的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!