我正在使用react-hook-form
材质 UI。单击按钮时我想获取我的autocomplete select
框值。目前它label
作为value
我需要的年份应该是一个值
这是我的代码
https://codesandbox.io/s/react-hook-form-get-started-nt4kh
当我选择{ title: "The Godfather", year: 1972 },
的值应该是1972
. 当前点击按钮显示The Godfather
为什么?
<Autocomplete
options={top100Films}
getOptionLabel={option => option.title}
renderInput={params => (
<TextField
{...params}
inputRef={register}
label={"Resolution Code"}
variant="outlined"
name={"resolutionCode"}
fullWidth
/>
)}