2023-03-20 React: Each child in a list should have a unique "key" prop. Check the render

Posted iuniko

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2023-03-20 React: Each child in a list should have a unique "key" prop. Check the render相关的知识,希望对你有一定的参考价值。

Each child in a list should have a unique "key" prop.  Check the render method of `App`

列表中的每个孩子都应该有一个唯一的“关键”道具。检查`App的呈现方法`

前言:react+antd业务中渲染组件地方用到了数组包裹。

原因:这个报错的关键就在于这个数组里面的每一项需要一个独立的key值,而我并没有添加进去故而报错。

解决方案:给数组里每个组件添加一个key值即可。如下例子:

[<div key=121></div>,
<div key=122></div>,
<div key=123></div>]

每个逗号隔开就代表一个组件,那么这个组件的第一级就得要用到key。

以上是关于2023-03-20 React: Each child in a list should have a unique "key" prop. Check the render的主要内容,如果未能解决你的问题,请参考以下文章

JQuery $.each

Jquery each()循环遍历的使用

jquery $.each 函数 console.log(this) ,打印结果是字符串,如 "a" 'b' 'c'

C++ STL应用与实现26: 如何使用std::for_each以及基于范围的for循环 (since C++11)

已弃用:each() 函数已弃用。 C:\xampp\htdocs\phprojekt\library\Zend\Cache\Backend.php 在第 66 行 [重复]

c++11的for新用法 (重新练习一下for_each)