我使用Reflux.connect
方法来更改组件状态,但我无法获得 和 之间的不同shouldComponentUpdate
部分。实际上,在被调用时已经有了我期望的新值。nextState
this.state
this.state
nextState
shouldComponentUpdate
当我想将 shouldComponentUpdate 与 Reflux 一起使用时,我需要做什么?
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
}