如何在React路由器4中获取先前的路径

时间:2019-07-25 05:42:10

标签: reactjs react-router

使用React路由器4.是否可以查看堆栈中的上一条路由?我不想去那里,我只想知道用户来自哪里。谢谢

1 个答案:

答案 0 :(得分:0)

您可以用来获取上一个位置。

 componentWillReceiveProps(nextProps) {
    if (nextProps.location !== this.props.location) {
     this.setState({ prevPath: this.props.location })
    }
 }