今天使用 FormItem 组件时从 initialValue 中发现 "1,2,3"这样的字符串经过 split 操作后得到的结果是字符串数组。 const str = '1,2,3'; const arr = str.split(','); cons...