最佳答案
我在我的项目中使用的是 response-router-dom 4.0.0-beta.6。 我有个准则,比如说:
<Route exact path="/home" component={HomePage}/>
我想得到 HomePage
组件中的查询参数。
我已经找到了 location.search
参数,它看起来像这样: ?key=value
,所以它是未解析的。
使用反应路由器 v4获取查询参数的正确方法是什么?