“Получите URL React” Ответ

Как получить текущий URL с JavaScript или реагировать

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

Получите URL React

window.location.href
Inquisitive Impala

Получить текущий url React Router

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

Ответы похожие на “Получите URL React”

Вопросы похожие на “Получите URL React”

Больше похожих ответов на “Получите URL React” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования