注意:复制/粘贴评论。确保喜欢原始帖子!
编写es6并使用react 0.14.6 / react-router 2.0.0-rc5。我使用以下命令在组件中查询查询参数:
this.props.location.query
它在URL中创建所有可用查询参数的哈希。
更新:对于React-Routerv4,请参见此答案。基本上,用于
this.props.location.search获取查询字符串并使用
query-string包或URLSearchParams进行解析:
const params = new URLSearchParams(paramsString); const tags = params.get('tags');
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)