メソッドを使用してコンポーネントの状態を変更しますが、との間Reflux.connect
の異なる部分を取得できません。実際には、が呼び出されたときに期待していた新しい値が既に含まれています。shouldComponentUpdate
nextState
this.state
this.state
nextState
shouldComponentUpdate
Reflux で shouldComponentUpdate を使用したい場合、何をする必要がありますか?
var component = React.createClass({
mixins: [Reflux.connect(store1, 'store1data'),
Reflux.connect(store2, 'store2data')],
shouldComponentUpdate: function(nextProps, nextState) {
//Here this.state.store1data is equal to nextState.store1data
}