0

我正在使用这个类来显示和过滤列表。这个类也触发一个搜索。

我的问题是 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);
  }
4

1 回答 1

1

你需要改变你的逻辑。像这样的东西应该工作:

onSearch(event){
  var search = event.target.value;

  if (search !== '') {
    FriendActions.getSearchList(search);
  }

  this.setState({search: search}); // w/ ES6: this.setState({search});
}

你是对的,这setState不是即时的。原因是setState您的代码中可以有很多调用。React 将rendersetState. 出于性能原因,它会等到所有setState调用完成后再渲染。

替代解决方案(不推荐):手动设置您的状态

this.state = 'whatever';

并更新自己

this.forceUpdate();
于 2015-10-29T14:11:19.673 回答