我在 react-hook-form 的 Controller 标记内使用 onChange 方法时遇到问题。当用户选择一个字段来呈现一个新的缺点时,我需要捕获,最后一个是信息关系。我在 MUI 中使用 react-hook-form
<FormControl>
<InputLabel>Universidad</InputLabel>
<Controller
as={
<Select placeholder="Universidad">
{universities.map((item, i) => {
return (
<MenuItem value={item.value} key={i}>
{item.label}
</MenuItem>
);
})}
</Select>
}
name="university"
control={control}
onChange={([event]) => {
console.log(event.target.value);
}}
defaultValue=""
/>
</FormControl>