1
我需要更新存儲每個按鈕上點擊listView並相應地更改按鈕狀態圖標。 unfollowing_ids是一個數組。Reactjs/Flux/altjs聆聽商店更改減慢應用程序
componentWillMount: function() {
FollowingStore.listen(this.onChange);
},
componentWillUnmount: function() {
FollowingStore.unlisten(this.onChange);
},
onChange: function(state) {
this.setState({unfollowing_ids: state.unfollowing_ids});
},
什麼是有效的實現方式。