“Bereaksi jalur rute yang tepat” 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

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 jalur rute yang tepat”

Pertanyaan yang mirip dengan “Bereaksi jalur rute yang tepat”

Lebih banyak jawaban terkait untuk “Bereaksi jalur rute yang tepat” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya