我有一个初始状态设置为等于存储状态的组件。此外,该组件还订阅了 Store 中发生的任何更改。
// Inital component's state is set to be equal to a Store state
constructor(props) {
super(props);
this.state = EntityStore.getState();
this.entitiesOnChange = this.entitiesOnChange.bind(this);
}
// Subscribe to any Store's change
componentDidMount() {
EntityStore.listen(this.entitiesOnChange);
}
// Update the state with the new one
entitiesOnChange(nextState) {
this.setState(nextState);
}
我的目标是将组件订阅到商店的特定属性。
我试图进行检查entitiesOnChange
,但我发现它this.state
已经与商店的状态 ( nextState
) 保持同步。同样在以下代码示例中(我尝试过的)this.setState(nextState)
没有被调用,因为两个状态是相等的,因此不会发生重新渲染:
// Update the state with the new one only if a specefic `propery` is changed
entitiesOnChange(nextState) {
// Here is the problem. `this.state` is already up to date.
if (this.state.property !== nextState.property) {
this.setState(nextState);
}
}
那么如何将我的组件订阅到特定商店的属性呢?