“Реагировать путь маршрута точно” Ответ

React Get The 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

Реагировать путь маршрута точно


<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

Ответы похожие на “Реагировать путь маршрута точно”

Вопросы похожие на “Реагировать путь маршрута точно”

Больше похожих ответов на “Реагировать путь маршрута точно” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования