“Bagaimana mengetahui rute saat ini dalam komponen kelas React” 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

Bagaimana mengetahui rute saat ini dalam komponen kelas React

/*For class based components*/
import { withRouter } from 'react-router-dom';

class SomeComponent extends Component {
  render() {
    console.log(this.props.location)
    console.log(this.props.location.pathname)
    console.log(this.props.location.match)
    return <div>Something</div>
  }
}

export default withRouter(SomeComponent)
Frightened Flatworm

Jawaban yang mirip dengan “Bagaimana mengetahui rute saat ini dalam komponen kelas React”

Pertanyaan yang mirip dengan “Bagaimana mengetahui rute saat ini dalam komponen kelas React”

Lebih banyak jawaban terkait untuk “Bagaimana mengetahui rute saat ini dalam komponen kelas React” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya