1

我想为我的应用程序的一部分设置一个“动态路线”,它是这样完成的:

<Route path="path(/:id)" component={Component} />

到目前为止,这是可行的,但在组件中我想访问 id 的值,因为它会根据它的不同改变一堆东西。我怎样才能做到这一点?

4

1 回答 1

1

在您的组件中,您可以通过props.

this.props.params.id

这是来自 react-router 的指南,其中也有更详细的介绍。 https://github.com/reactjs/react-router-tutorial/tree/master/lessons/06-params

于 2016-10-25T17:47:28.693 回答