繁体   English   中英

ESLint 错误:列表中的每个孩子都应该有一个唯一的“key”道具

[英]ESLint Error: Each child in a list should have a unique “key” prop

我有一个 JSON 字符串,如下所示。 该字符串具有 \n 用于下一行。

data:{a:"A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks. A "complete" computer including the hardware, the operating system (main software), and peripheral equipment required and used for "full" operation can be referred to as a computer system. This term may as well be used for a group of computers that are connected and work together, in particular, a computer network or computer cluster.\nComputers are used as control systems for a wide variety of industrial and consumer devices. This includes simple special purpose devices like microwave ovens and remote controls, factory devices such as industrial robots and computer-aided design, and also general-purpose devices like personal computers and mobile devices such as smartphones. The Internet is run on computers and it connects hundreds of millions of other computers and their users."}

我在 React 中使用它,如下所示:

const b = data.a.split("\n");
return(
<P>
b.map((p,index)=>({p}<br key={index}/>))
</p>

对于上面的代码,我收到了 ES lint 警告。 警告如下所示。

Each child in a list should have a unique "key" prop.

我怎样才能避免警告? 我需要段落标记中的文本,文本中的每个换行符(\n)替换为<br/>

b.map((p,index)=>(<p key={index}>{p}</p>))

您需要包装元素上的密钥。 只需使用p标签,您就可以免费获得换行符。 ;)

不过,使用索引作为键是一个坏主意是有原因的。

您需要将key属性设置为从map而不是<br>元素返回的项目。

尝试这样的事情:

<P>
  { React.Children.toArray(b.map((p,index)=>({p}<br/>))) }
</p>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM