“Obtener el enrutador de reacción de URL actual” Código de respuesta

reaccionar obtenga la ruta actual

/*In the 5.1 release of react-router there is a hook called useLocation,
which returns the current location object. 
This might be useful any time you need to know the current URL.*/
import { useLocation } from 'react-router-dom';

const location = useLocation();
console.log(location.pathname);

Snackety Snack

Cómo obtener URL actual con JavaScript o React

const currentURL = window.location.href // returns the absolute URL of a page

const pathname = window.location.pathname //returns the current url minus the domain name
Terrible Teira

hacer reaccionar URL

window.location.href
Inquisitive Impala

Obtener el enrutador de reacción de URL actual

import {withRouter} from 'react-router-dom';

const SomeComponent = withRouter(props => <MyComponent {...props}/>);

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

Respuestas similares a “Obtener el enrutador de reacción de URL actual”

Preguntas similares a “Obtener el enrutador de reacción de URL actual”

Más respuestas relacionadas con “Obtener el enrutador de reacción de URL actual” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código