マテリアル UI で使用しています。ボタンをクリックすると、ボックスの値react-hook-formを取得したいと思います。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
/>
)}
