最佳答案
据我所知,<Route path="/" component={App} />
将给 App
路由相关的道具,如 location
和 params
。如果我的 App
组件有许多嵌套的子组件,我如何让子组件访问这些道具,而不需要:
我原以为 this.context.router
会有一些与路由相关的信息,但是 this.context.router
似乎只有一些操作路由的函数。