标签: javascript reactjs react-router react-router-v4
使用react-router v4,我该如何获取当前的抽象路径。例如,我可以在使用this.props.location时访问withRouter(...),但是当我需要/students/19时,这会提供students/:id等。此功能是日志工具所需的。
this.props.location
withRouter(...)
/students/19
students/:id
我该如何做到这一点?
答案 0 :(得分:0)
使用this.props.match.path。我相信这就是你所需要的。
this.props.match.path