“Réagir le chemin d'itinéraire exact” Réponses codées

React Get Route Path

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

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

Strange Seahorse

Réagir le chemin d'itinéraire exact


<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

Réponses similaires à “Réagir le chemin d'itinéraire exact”

Questions similaires à “Réagir le chemin d'itinéraire exact”

Plus de réponses similaires à “Réagir le chemin d'itinéraire exact” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code