📅  最后修改于: 2022-03-11 15:01:57.995000             🧑  作者: Mango
/*For class based components*/
import { withRouter } from 'react-router-dom';
class SomeComponent extends Component {
render() {
console.log(this.props.location)
console.log(this.props.location.pathname)
console.log(this.props.location.match)
return Something
}
}
export default withRouter(SomeComponent)