码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-08-21 00:11:29      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:cat   change   不同   输出   空字符串   value   ant   ati   init   

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

 

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

标签:cat   change   不同   输出   空字符串   value   ant   ati   init   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!