前端之家收集整理的这篇文章主要介绍了
react 子组件 怎么改变 父组件的 state,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
父组件
class Father extends Component {
construtor(props){
super(props);
this.state={
name: 'Peter',age: '26'
}
}
onChangeState(stateName){
this.setState(stateName)
}
render(){
<p>姓名:{this.state.name}</p>
<p>年龄:{this.state.age}</p>
<Child onClicked={this.onChangeState.bind(this)}/>
}
}
子组件
class Child extends Component {
render(){
<Button onClick={()=>this.props.onClicked({name: 'John'})}/>
}
}
原文链接:https://www.f2er.com/react/303728.html