gpt4 book ai didi

javascript - 使用 LodashFP 时为 React 生成唯一 key

转载 作者:行者123 更新时间:2023-12-03 00:56:10 24 4
gpt4 key购买 nike

我尝试使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com