“bereaksi mendapatkan jalur rute” Kode Jawaban

bereaksi mendapatkan jalur rute

import { useLocation } from 'react-router-dom'

function HeaderView() {
  const location = useLocation();
  console.log(location.pathname);
  return <span>Path : {location.pathname}</span>
}

Strange Seahorse

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

Bereaksi jalur rute yang tepat


<Route exact path="/">
  <Home />
</Route>

# The exact prop above tells the Router component to match the path exactly. If you don't add the exact prop on the / path, it will match with all the routes starting with a / including /about.
Irfan

Jawaban yang mirip dengan “bereaksi mendapatkan jalur rute”

Pertanyaan yang mirip dengan “bereaksi mendapatkan jalur rute”

Lebih banyak jawaban terkait untuk “bereaksi mendapatkan jalur rute” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya