如何通过反应将数据从孩子发送到父母?

时间:2019-05-27 14:51:30

标签: javascript reactjs state setstate react-props

我有一个react父组件,其中有一个子组件。

import Child from './child';
export default class Parent extends Component {
 constructor(props){
    super(props);
    this.state = {
     events: [
        {
          title: "My event",
          start: new Date(2019, 4, 27, 7, 0), // 10.00 AM
          end: new Date(2019, 4, 27, 14, 0) // 2.00 PM
        }
      ],
    }
 }
render() {
    return (
        <div> 
         <h1>Parent component</h1>
         <Child events={this.state.events}/>
       </div>);
} 

在子组件上,我想更新此事件并将其发送给父组件。

我该如何解决?

0 个答案:

没有答案