鉴于以下从 React 类组件中提取的片段:
constructor(props) {
super(props)
this.state = { active: true }
}
deactivate = () => {
this.setState({ ...this.state, active: false })
}
扩展运算符进入 stopCounter() 方法的目的是什么?该应用程序也可以删除它:
deactivate = () => {
this.setState({ active: false })
}