在React中,子组件向父组件传值可以通过两种方式实现:
父组件示例代码:
import React, { useState } from 'react';
import ChildComponent from './ChildComponent';
function ParentComponent() {
const [value, setValue] = useState('');
const handleChildValue = (childValue) => {
setValue(childValue);
};
return (
<div>
<ChildComponent onValueChange={handleChildValue} />
<p>Value from child component: {value}</p>
</div>
);
}
export default ParentComponent;
子组件示例代码:
import React, { useState } from 'react';
function ChildComponent({ onValueChange }) {
const [inputValue, setInputValue] = useState('');
const handleChange = (event) => {
setInputValue(event.target.value);
onValueChange(event.target.value);
};
return (
<div>
<input type="text" value={inputValue} onChange={handleChange} />
</div>
);
}
export default ChildComponent;
在上面的示例中,子组件ChildComponent
接收一个onValueChange
的props,它是一个回调函数。当子组件的输入框的值发生变化时,会调用handleChange
函数,将输入的值传递给onValueChange
回调函数,从而将值传递回父组件。
父组件示例代码:
import React, { useState } from 'react';
import { MyContext } from './MyContext';
import ChildComponent from './ChildComponent';
function ParentComponent() {
const [value, setValue] = useState('');
return (
<div>
<MyContext.Provider value={value}>
<ChildComponent />
</MyContext.Provider>
<p>Value from child component: {value}</p>
</div>
);
}
export default ParentComponent;
子组件示例代码:
import React, { useContext, useState } from 'react';
import { MyContext } from './MyContext';
function ChildComponent() {
const value = useContext(MyContext);
const [inputValue, setInputValue] = useState('');
const handleChange = (event) => {
setInputValue(event.target.value);
};
return (
<div>
<input type="text" value={inputValue} onChange={handleChange} />
<p>Value from parent component: {value}</p>
</div>
);
}
export default ChildComponent;
在上面的示例中,父组件ParentComponent
创建了一个MyContext
,并将value
放入MyContext.Provider
的value属性中。子组件ChildComponent
通过useContext
来获取MyContext
的值,并将其显示在页面上。子组件也可以通过input
的onChange
事件来更新inputValue
的状态值,但这个值只在子组件中存在,并不会传递给父组件。