如何在没有Route
或NavLink
组件的情况下使用React Router v4检查路由模式是否与当前路由匹配,或者编写自己的正则表达式以匹配路由?
例如,如果路由是/users/5/friends/3/pets/10/edit
,我希望能够检查路由是否与模式匹配(如Route
和NavLink
使用的模式)。像这样:
const isEditFriendPetRoute = routeMatches('/users/:userId/friends/:friendId/pets/:petId/edit');
console.log(
isEditFriendPetRoute
? `Is editing friend's pet`
: `Is not editing friends pet`
)
答案 0 :(得分:2)
import { matchPath } from 'react-router-dom'
const match = matchPath('/users/123', {
path: '/users/:id',
exact: true,
strict: false
})
如果URL与路径模式匹配,则它将返回一个对象,否则将返回null。
从下一页检查api https://reacttraining.com/react-router/web/api/matchPath