我创建了一个表单,当用户进行选择时,我想将表单输入的值实时传递给兄弟组件。
我正在使用 react-hook-form 并且能够成功地使用watch查看用户输入的值,但我只知道如何将其传递给孩子,而不是兄弟姐妹。
应用程序.js
这是家长
import React from 'react'
import Form from './Form';
import Message from './Message';
const App = () => {
return (
<div>
<Form />
<Message/>
</div>
);
};
export default App;
表单.js
这是孩子。
import React from 'react';
import { useForm } from 'react-hook-form';
import { Select, MenuItem } from '@material-ui/core';
import { Controller } from 'react-hook-form';
function Form() {
const {control, watch } = useForm();
const watchDiet = watch('diet');
return(
<form>
<label htmlFor="diet">Dietary requirements</label>
<Controller
as={
<Select name="diet">
<MenuItem value="meat">Meat eater</MenuItem>
<MenuItem value="veggie">Vegetarian</MenuItem>
<MenuItem value="vegan">Vegan</MenuItem>
))}
</Select>
}
control={control}
name="diet"
id="diet"
/>
</form>
);
}
export default Form;
消息.js
这是孩子的兄弟姐妹。我想将值传递给这个组件
import React from 'react';
const Message= (props) => {
return (
<div>
If the user selects "Meat eater" in Form.js I want to
pass the value "meat" into this component
</div>);
};
export default Message;
我对 React 很陌生,所以很难思考如何做到这一点。Wny 指导将不胜感激。
非常感谢,
凯蒂