“Как получить 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

this.props.match.params.id
John wick

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

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

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

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

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