我有这种情况:
static getDerivedStateFromProps(nextProps, prevState) {
if(...) {
console.log("A")
return {
a: true
}
}
console.log("B")
return {
a: false
}
}
shouldComponentUpdate() {
const { a } = this.state
console.log(a)
return a
}
现在运行这个我得到
A
false
那么我在这里错过了什么?getDerivedStateFromProps 不应该更新状态吗?