报错:Encountered two children with the same key, `.$xxx`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted — the behavior is unsupported and could change in a future version.
封装antd select 组件时,key换了无数次,各种拼接、转换随机数,都不管用,最终发现value绑定的不是唯一id。
解决:value后面拼接index,再不济拼接随机数就好了,传参时截掉。
在封装antd的Select组件时遇到报错,提示key需唯一。尝试多种生成key的方法无效,问题出在value未绑定唯一id。解决方案是为value拼接index或随机数确保唯一性,传递参数时可去除拼接部分。
2万+

被折叠的 条评论
为什么被折叠?



