如何访问react-router v4中的抽象当前路径

时间:2017-08-14 21:04:03

标签: javascript reactjs react-router react-router-v4

使用react-router v4,我该如何获取当前的抽象路径。例如,我可以在使用this.props.location时访问withRouter(...),但是当我需要/students/19时,这会提供students/:id等。此功能是日志工具所需的。

我该如何做到这一点?

enter image description here

1 个答案:

答案 0 :(得分:0)

使用this.props.match.path。我相信这就是你所需要的。