• 返回一个对象,其中包含当前 URL 中与路由匹配的动态参数的键/值对。子路由继承其父路由的所有参数。

    import { useParams } from "react-router"

    function SomeComponent() {
    let params = useParams()
    params.postId
    }

    假设路由模式如 /posts/:postId/posts/123 匹配,则 params.postId 将为 "123"

    类型参数

    • ParamsOrKey extends string | Record<string, undefined | string> = string

    Returns Readonly<[ParamsOrKey] extends [string]
        ? Params<ParamsOrKey>
        : Partial<ParamsOrKey>>