Ejemplo 1: obtener url reaccionar
window.location.href
Ejemplo 2: obtener la url actual reaccionar enrutador
import {withRouter} from 'react-router-dom';
const SomeComponent = withRouter(props => <MyComponent {...props}/>);
class MyComponent extends React.Component {
SomeMethod () {
const {pathname} = this.props.location;
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)