我按照以下教程在React with Redux中实现了一个简单的登录表单:https://jslancer.com/blog/2017/04/27/a-simple-login-flow-with-react-and-redux/
一切正常,但是当我添加Cookie时,出现错误消息:
警告:在现有状态转换过程中无法更新(例如 在
render
中)。渲染方法应该是道具的纯粹功能 和状态。
还有:
未捕获的恒定违反:超出最大更新深度。这个可以 当组件重复调用内部的setState时发生 componentWillUpdate或componentDidUpdate。反应限制数量 嵌套更新以防止无限循环。
我做了一些调试,如果我从下面代码的输入中删除onChange={e => this.setState({password: e.target.value})}
,错误消失了。
任何想法为何以下代码无法正常工作?
import { connect } from 'react-redux';
import { withCookies } from 'react-cookie'
class LoginForm extends Component {
constructor(props) {
super(props);
this.state = {
username: '',
password: ''
};
}
render() {
let {username, password} = this.state;
let { cookies, allCookies, isLoginPending, isLoginSuccess, loginError} = this.props;
cookies.set('username', 'Ross', { path: '/', secure: true, httpOnly: true});
console.log(cookies.get('username'));
return (
<form name="loginForm" onSubmit={this.onSubmit}>
<div className="form-group-collection">
<div className="form-group">
<label>Username:</label>
<input type="text" name="username" onChange={e => this.setState({username: e.target.value})} value={username}/>
</div>
<div className="form-group">
<label>Password:</label>
<input type="password" name="password" onChange={e => this.setState({password: e.target.value})} value={password}/>
</div>
</div>
</form>
)
}
}
const mapStateToProps = (state) => {
return {
isLoginPending: state.isLoginPending,
isLoginSuccess: state.isLoginSuccess,
loginError: state.loginError,
};
}
export default withCookies(connect(mapStateToProps, null)(LoginForm));```
答案 0 :(得分:0)
我的猜测是,由于您的组件已连接到cookie HoC,然后您在cookies.set
方法中调用render
,因此它每次都会更新,从而形成无限循环。请尝试将cookies.set
移至componentDidMount
。