<Link to={{pathname:"/Watch", movie:movie}} > using this to pass props over Watch page but can't get any value.
我是新手,所以可能会出现愚蠢的错误或信息不足。请让我知道任何额外的信息
如果您使用的是v5 react-router-dom,那么路由状态是.toLink
react-router-dom
to
Link
RRDv5 链接
<Link to={{ pathname: "/Watch", state: { movie } }}>...</Link>
如果使用react-router-domv6 thenstate是顶级props。
state
RRDv6 链接
<Link to="/Watch" state={{ movie }}>...</Link>