选择上的 forwardRef 不会使用 react-hook-form 保存选择的值
Posted
技术标签:
【中文标题】选择上的 forwardRef 不会使用 react-hook-form 保存选择的值【英文标题】:forwardRef on Select does not save chosen value with react-hook-form 【发布时间】:2021-12-05 15:52:44 【问题描述】:我正在构建一个反应组件库。
此文本字段通过将ref
与forwardRef
一起传递来工作:
export const TextField = React.forwardRef((props:TextFieldProps, ref) =>
return (
<input ref=ref....
但是,当我尝试使用 select
进行相同操作时:
export const SimpleSelect = React.forwardRef((props: SimpleSelectProps, ref: Ref<htmlSelectElement>) =>
const options = props.options
return (
<select ref=ref className="Select">
<option>-- Select an option --</option>
options &&
options.map((option: OptionsType) => (
<option key=option.value value=option.value>
option.label
</option>
然后我在自己的应用程序中使用react-hook-form,如下所示:
<form onSubmit=handleSubmit(onSubmit)>
<SimpleSelect
...register('thingId', required: true )
title="Thing"
options=
things &&
things.map(( thing : Thing) => (
value: thing.uid,
label: thing.primaryName,
))
/>
选择的选项没有保存,我可以看到当我提交表单时,即使选择了一个选项,它也会尝试提交“--选择一个选项--”。
【问题讨论】:
【参考方案1】:您需要在select
组件中传播RHF 提供的props 以使您的控件正常工作。具体来说,select
需要一个 name
属性以便可以识别它,onChange
以便 RHF 可以监听选项更改事件:
<select ref=ref className="Select" ...props>
【讨论】:
非常感谢 我以前从没想过!谢谢你。对我有很大帮助以上是关于选择上的 forwardRef 不会使用 react-hook-form 保存选择的值的主要内容,如果未能解决你的问题,请参考以下文章
ReactJS:React-Month-Picker错误:功能组件不能具有引用。您是要使用React.forwardRef()吗?
将 React forwardRef 与 Redux 连接一起使用
使用 typescript 模拟 forwardRef 组件 jest mockImplementation