链接参数不会在JSX中呈现(反应)

时间:2016-12-20 15:41:56

标签: javascript reactjs react-router jsx

<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.

1 个答案:

答案 0 :(得分:1)

<Link to={"/profile/" + user.id}>View </Link>

这就是你要找的东西