我正在尝试使用 setState() 方法在容器中重置 React 状态变量(为默认值)。但是得到以下错误
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`.
最后:超出最大调用堆栈大小。
我的代码如下:
resetMsg=()=> {
const company = this.state.company;
company.id = 0;
company.messages = [];
this.setState({company: company});
}
当 Redux 状态中的变量为真时,我正在调用 resetMsg()。
我调用 resetMsg 的代码( resetMessages 的值最初是 false ,我需要重置 React-state ,当它为 true 时):
render() {
if(this.props.resetMessages){
this.resetMsg();
}