Tag: setstate

ReactJS:警告:setState(…):在现有状态转换期间无法更新

我想从我的渲染视图重构下面的代码: <Button href="#" active={!this.state.singleJourney} onClick={this.handleButtonChange.bind(this,false)} >Retour</Button> 到绑定在构造函数中的版本。 原因是渲染视图中的绑定会给我带来性能问题,特别是在低端手机上。 我已经创build了下面的代码,但是我经常得到以下错误(大量)。 它看起来像应用程序进入一个循环: Warning: setState(…): Cannot update during an existing state transition (such as within `render` or another component's constructor). Render methods should be a pure function of props and state; constructor side-effects are an anti-pattern, but can be moved to `componentWillMount`. 以下是我使用的代码: var React = require('react'); var […]