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});
},
효과적인 방법은 무엇입니까?