我有一个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>);
}
在子组件上,我想更新此事件并将其发送给父组件。
我该如何解决?