📜  反应获取路由路径 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:18.261000             🧑  作者: Mango

代码示例2
import {withRouter} from 'react-router-dom';

const SomeComponent = withRouter(props => );

class MyComponent extends React.Component {
  SomeMethod () {
    const {pathname} = this.props.location;
  }
}