我想在登录后在我的容器“ LoginPage”(智能组件)中使用重定向。像这样:
handleSubmit(username, pass, nextPath) { function redirect() { this.props.pushState(null, nextPath); } this.props.login(username, pass, redirect); //action from LoginAcitons }
用户名和密码来自哑组件。
智能组件连接
function mapStateToProps(state) { return { user: state.app.user }; } function mapDispatchToProps(dispatch) { return bindActionCreators(LoginActions, dispatch) }
如何从redux-router添加pushState?还是我走错路了?
export default connect(mapStateToProps, {pushState})(LoginPage); //works, but haven't actions export default connect(mapStateToProps, mapDispatchToProps)(LoginPage); //works, but haven't pushState export default connect(mapStateToProps, mapDispatchToProps, {pushState})(LoginPage); //Uncaught TypeError: finalMergeProps is not a function
function mapStateToProps(state) { return { user: state.app.user }; } function mapDispatchToProps(dispatch) { return { actions: bindActionCreators(LoginActions, dispatch), routerActions: bindActionCreators({pushState}, dispatch) } } export default connect(mapStateToProps, mapDispatchToProps)(LoginPage);