我正在使用索引在列表中生成键。但是,es-lint 会产生相同的错误。React doc还指出,使用项目索引作为键应该作为最后的手段。
const list = children.map((child, index) =>
<li key={index}> {child} </li>);
我考虑使用react-key-index
.
npm install react-key-index
给出以下错误:
npm ERR! code E404
npm ERR! 404 Not Found: react-key-index@latest
对允许生成唯一密钥的其他软件包有什么建议吗?对react密钥生成器的任何建议表示赞赏!