“Dapatkan Router Bereaksi URL Saat Ini” Kode Jawaban

bereaksi mendapatkan rute saat ini

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

Cara mendapatkan URL saat ini dengan JavaScript atau 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

Dapatkan URL Bereaksi

window.location.href
Inquisitive Impala

Dapatkan Router Bereaksi URL Saat Ini

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

Jawaban yang mirip dengan “Dapatkan Router Bereaksi URL Saat Ini”

Pertanyaan yang mirip dengan “Dapatkan Router Bereaksi URL Saat Ini”

Lebih banyak jawaban terkait untuk “Dapatkan Router Bereaksi URL Saat Ini” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya