如何在Redux表单中使用多选React Widgets,我可以允许创建新选项,它将以redux格式状态存储。 Redux表单文档没有新标记创建选项的示例。
答案 0 :(得分:1)
我得到了解决方案,我们需要allowCreate={true}
onCreate={(name) => this.input.push(name)}
my_string = 'asdf'
print(my_string is 'xfje') #R0123
这两个属性都是创建标记选项所必需的。
答案 1 :(得分:0)
我还没有使用过此软件包,但我认为软件包不提供允许标签创建的功能。 您应该自己实现它,通过提供选项创建的输入并将它们推送到您的选项状态对象,或者使用另一个已经实现了所需功能的https://github.com/JedWatson/react-select包。
答案 2 :(得分:0)
我认为您的意思是onCreate={(name)=>data.push(name)}
,因为this.input
不包含push方法。