如何使用生命周期方法 getDerivedStateFromProps 而不是 componentWillReceiveProps
2022-08-30 02:22:41
看起来它将在即将发布的版本中完全淘汰,取而代之的是新的生命周期方法:static getDerivedStateFromProps()。componentWillReceiveProps
getDerivedStateFromProps
经过检查,您现在似乎无法像在 中那样直接比较 和 。。有什么办法可以解决这个问题吗?this.props
nextProps
componentWillReceiveProps
此外,它现在返回一个对象。我假设返回值本质上是正确的吗?this.setState
以下是我在网上找到的一个例子:状态派生自 props/state。
以前
class ExampleComponent extends React.Component {
state = {
derivedData: computeDerivedState(this.props)
};
componentWillReceiveProps(nextProps) {
if (this.props.someValue !== nextProps.someValue) {
this.setState({
derivedData: computeDerivedState(nextProps)
});
}
}
}
后
class ExampleComponent extends React.Component {
// Initialize state in constructor,
// Or with a property initializer.
state = {};
static getDerivedStateFromProps(nextProps, prevState) {
if (prevState.someMirroredValue !== nextProps.someValue) {
return {
derivedData: computeDerivedState(nextProps),
someMirroredValue: nextProps.someValue
};
}
// Return null to indicate no change to state.
return null;
}
}