使用 Link 元素和来自 React 路由器的 useLocation 挂钩时访问道具

Access props when using the Link element and the useLocation hook from react router

我正在尝试将 props 发送到使用来自 React 路由器的 <Link> 标记呈现的子组件。我这样做:

[...]
<Link
  to={{
    pathname: `/Element/${id}`,
    state: {
      info: "foo",
    },
  }}
>
  {title}
</Link>;
[...]
import { useLocation } from "react-router-dom";

const Element = () => {
  const data = useLocation();
  console.log(data)

  return (...);
};

这将返回一个带有键 state: undefined

的对象

我在这里错过了什么?提前致谢

我终于找到了,我需要用 withRouter 钩子

包装两个组件