我的 React 类中有一个方法,例如someMethod()
。我也有一个getDerivedStateFromProps()
我想调用的方法someMethod()
。是的,我需要这样做getDerivedStateFromProps
而不是componentDidUpdate()
例如,因为我确实更改了someMethod()
.
someMethod() {
this.setState({worked: true});
return 'worked';
}
static getDerivedStateFromProps(props, state) {
console.log(someMethod());
}
我希望worked
显示日志。