标签: reactjs react-router
使用React路由器4.是否可以查看堆栈中的上一条路由?我不想去那里,我只想知道用户来自哪里。谢谢
答案 0 :(得分:0)
您可以用来获取上一个位置。
componentWillReceiveProps(nextProps) { if (nextProps.location !== this.props.location) { this.setState({ prevPath: this.props.location }) } }