如何使用NAVLINK传递道具?

时间:2020-10-25 10:25:11

标签: reactjs react-router

我尝试使用aboubtProps,但是在NAVLINK中不起作用。

enter image description here

2 个答案:

答案 0 :(得分:0)

我会这样:

const location = {
  pathname: '/somewhere',
  state: { title: 'someTitle'}
}

<NavLink to={location}/>

然后您不是从道具而是从location.state

答案 1 :(得分:0)

尝试

<NavLink
 to={{
     pathname:"/sum-patch",
     aboutProps:{title:"title Props"}             
  }}