“Obtenha o roteador atual de URL React” Respostas de código

React Obtenha a rota atual

/*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

Como obter URL atual com JavaScript ou 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

Obtenha o URL react

window.location.href
Inquisitive Impala

Obtenha o roteador atual de URL React

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

Respostas semelhantes a “Obtenha o roteador atual de URL React”

Perguntas semelhantes a “Obtenha o roteador atual de URL React”

Mais respostas relacionadas para “Obtenha o roteador atual de URL React” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código