listViewのボタンをクリックするたびにストアを更新し、それに応じてボタンの状態アイコンを変更する必要があります。unfollowing_ids は配列です。
componentWillMount: function() {
FollowingStore.listen(this.onChange);
},
componentWillUnmount: function() {
FollowingStore.unlisten(this.onChange);
},
onChange: function(state) {
this.setState({unfollowing_ids: state.unfollowing_ids});
},
達成するための効率的な方法は何ですか。