state = {
keyValue: ‘随便’,
};
给他给个 key = {this.state.keyValue}
点击重置 this.setState({keyValue:new Date()}) 或者 this.setState({keyValue:null}) 就能清空了 相当于重新渲染了一个 ,目的达到
2024-01-05 15:37:46
state = {
keyValue: ‘随便’,
};
给他给个 key = {this.state.keyValue}
点击重置 this.setState({keyValue:new Date()}) 或者 this.setState({keyValue:null}) 就能清空了 相当于重新渲染了一个 ,目的达到