标签: react-hooks
我正在尝试获取componentWillReceiveProps钩子等效项:
componentWillReceiveProps(newProps){ if(newProps.errors){ this.setState({errors:newProps.errors}) } }
答案 0 :(得分:2)
我认为您应该在react挂钩中使用useEffect,它最好与挂钩一起使用