我正在使用这个类来显示和过滤列表。这个类也触发一个搜索。
我的问题是 setState 函数似乎不是立即的。
FriendActions.getSearchList(this.state.search);
如果我评论这个动作。console.log 将按原样打印状态。如果没有,“搜索”状态将“消失”。
我认为在状态更改之前可能会触发更改事件。但我真的不知道。
我希望我已经说清楚了。如果没有,请随时向我询问更多信息。
onSearch(event){
this.setState({search: event.target.value});
if (this.state.search !== '')
FriendActions.getSearchList(this.state.search);
}
class FriendList extends React.Component {
constructor(props) {
super(props);
this.state = FriendStore.getState();
this.onChange = this.onChange.bind(this);
this.filterByUsername = this.filterByUsername.bind(this);
// limit this function every 200 ms
this.onSearch = debounce(this.onSearch, 200);
}
componentDidMount () {
FriendStore.listen(this.onChange);
FriendActions.getFriendsList();
}
componentWillUnmount() {
FriendStore.unlisten(this.onChange);
}
onChange(state) {
console.log(state);
this.setState(state);
}
onSearch(event){
this.setState({search: event.target.value});
if (this.state.search !== '')
FriendActions.getSearchList(this.state.search);
}