首页 > 其他 > 详细

react antd Warning: must set key for <rc-animate> children

时间:2019-08-21 02:10:54      阅读:322      评论:0      收藏:0      [点我收藏+]

实例中,location 有可能是一个‘’,‘‘.split() 将输出[""],是个含有空字符串的数组,而[]是个什么都没有的数组,两者不同。
code:
change initialValue from :
initialValue: location.split(‘,‘) || []
to:
initialValue: location === ‘‘ ? [] : location.split(‘,‘)

 

react antd Warning: must set key for <rc-animate> children

原文:https://www.cnblogs.com/begin256/p/11386309.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!