“Obtenha o URL react” Respostas de código

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 URL react”

Perguntas semelhantes a “Obtenha o URL react”

Mais respostas relacionadas para “Obtenha o URL react” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código