“Dokładna ścieżka trasy reaguj” Kod odpowiedzi

React Zdobądź ścieżkę trasy

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

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

Strange Seahorse

Dokładna ścieżka trasy reaguj


<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

Odpowiedzi podobne do “Dokładna ścieżka trasy reaguj”

Pytania podobne do “Dokładna ścieżka trasy reaguj”

Więcej pokrewnych odpowiedzi na “Dokładna ścieżka trasy reaguj” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu