<Link to={{pathname:'/profile',query: {id: {user.id}}}>View </Link>
我想渲染一个去路径的链接,但在我的dom中,我看到profile/user?user.id
早期我尝试了更简单的事情
<Link to="/profile/{user.id}">View </Link> it doesn't work too.
答案 0 :(得分:1)
<Link to={"/profile/" + user.id}>View </Link>
这就是你要找的东西