标签: reactjs react-router react-router-v4
类似于
http://somedomain.com/path/to/app?code=123#/route/of/app?foo=bar
如何在react-router中管理代码和foo的参数值?
答案 0 :(得分:0)
尝试在组件中使用this.props.location.search-这将为您提供查询参数。然后,您可以用#拆分以获取code=123和另一部分,然后可以用?拆分以获取foo=bar部分。
this.props.location.search
#
code=123
?
foo=bar