我正在开发react应用,并且正在从模式中重定向页面。重定向,但它显示所需的页面,并且无法滚动。 (刷新后,启用了滚动)
我尝试使用this.props.history.push以及window.location.replace / href,两者的行为方式相同。
<ReactModal
closeOnOverlayClick
shouldCloseOnEsc
showCloseIcon
open={this.state.loginModal}
center
onClose={this.openLoginModal}>
<Login redirTo={this.state.redirTo} history={this.props.history} postLoginCb={this.postLogin} ></Login>
</ReactModal>
此代码位于一个更大的组件中。重定向位于Login内部(我发送历史记录是因为它没有自己的模式)。
有什么想法吗?