Reaction-路由器v6:获取当前路由的路径模式
是否可以获取当前匹配的路由的路径模式?示例:
<Route
path=":state/:city*"
element={
<Page />
}
/>
// Page.jsx
function Page() {
...
// usePathPattern doesn't actually exist
const pathPattern = usePathPattern(); // pathPattern = ":state/:city*"
...
}
我知道我可以使用useMatch
检查当前位置是否与特定路径模式匹配,但随后组件必须知道路径模式是什么。
解决方案
在Route
的上下文中,您可以通过the docs中列出的几种方法获取path
。
我的问题略有不同,因为我需要path
之外的Route
,并得出了以下解决方案,该解决方案也适用于您:
import {
matchPath,
useLocation
} from "react-router-dom";
const routes = [ ':state/:city', ...otherRoutes ];
function usePathPattern() {
const { pathname } = useLocation();
return matchPath( pathname, routes )?.path;
}
相关文章