我正在尝试根据通过子组件传入的数据来更改父组件的状态。我不知道如何在没有按钮的情况下更改父母。子元素上的 this.state.rows 来自数据库,我想更改状态,以便在数据加载时显示旋转图标。
class Parent extends Component{
constructor(props){
super();
this.state={
spinner=false
}
this.spinnerUpdate = this.spinnerUpdate.bind(this)
}
spinnerUpdate(){}
render(){
return(
<Child spinner={this.spinnerUpdate}/>
)
}
}
class Child extends Component{
constructor(props){
super(props);
this.state={
rows: rows,
}
this.spinner = this.spinner.bind(this)
}
spinner(){
if(this.state.rows){
this.setState({spinner: true})
}
}
render(){
return(
<div>
//random info
</div>
)
}
}
我希望子组件中的微调器函数在数据被渲染时改变父状态的状态。