react-router – 从ReactRouter.browserHistory获取以前的路径
发布时间:2020-12-15 09:35:42 所属栏目:百科 来源:网络整理
导读:是否有可能从ReactRouter.browserHistory获取以前的路径数和路径值? 解决方法 其实你做不到. 但您可以尝试在browserHistory状态下存储列表,并在重定向时在其中推送新路径. let history = this.props.location.state.history;history.push(this.props.locati
是否有可能从ReactRouter.browserHistory获取以前的路径数和路径值?
解决方法
其实你做不到.
但您可以尝试在browserHistory状态下存储列表,并在重定向时在其中推送新路径. let history = this.props.location.state.history; history.push(this.props.location.pathname) browserHistory.push({ pathname: '/yourpath',state: { history: history } }) 通过这种方式,您应该在this.props.location.state.history中找到所有历史记录 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |