其他分享
首页 > 其他分享> > React报错之Encountered two children with the same key

React报错之Encountered two children with the same key

作者:互联网

正文从这开始~

总览

当我们从map()方法返回的两个或两个以上的元素具有相同的key属性时,会产生"Encountered two children with the same key"错误。为了解决该错误,为每个元素的key属性提供独一无二的值,或者使用索引参数。

react-encountered-two-children-with-the-same-key.png

这里有个例子来展示错误是如何发生的。

// App.js
const App = () => {
  // 

标签:name,two,same,Alice,person,报错,key,id,属性
来源: https://www.cnblogs.com/chuckQu/p/16581398.html