“hacer reaccionar URL” Código de respuesta

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 “hacer reaccionar URL”

Preguntas similares a “hacer reaccionar URL”

Más respuestas relacionadas con “hacer reaccionar URL” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código