作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 Lodash 的 map 方法在 React 中渲染组件列表,但由于其返回方式,生成的 key 始终相同。有什么办法可以解决这个问题吗?
{map((item) => (<Item {...item} key={item.id} />), items}
最佳答案
您不应使用索引号作为键。 here博客是为什么呢?
我发现的最好方法是这个 btoa(Math.random()).substring(0, 12)
JS 原生支持 btoa。
console.log(btoa(Math.random()).substring(0, 12))
key={btoa(Math.random()).substring(0, 12)}
关于javascript - 使用 LodashFP 时为 React 生成唯一 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52827187/
我尝试使用 Lodash 的 map 方法在 React 中渲染组件列表,但由于其返回方式,生成的 key 始终相同。有什么办法可以解决这个问题吗? {map((item) => (), items}
我是一名优秀的程序员,十分优秀!