React router:合并查询

时间:2016-08-24 14:32:09

标签: reactjs react-router

react-router: ^2.0.0

我现在有这条道路:

http://localhost:8000/feed?type=topics

添加一个属性进行查询的正确方法是什么?说,&offset=18

如何才能在查询中正确更新此特定属性?

我是否必须从this.props.location的分隔部分汇总整个路径,参数和现有查询?

我已经为以前的版本找到了很多建议,但目前没有任何建议。

另外,某处有react-router的良好文档吗?回购文件不足。

1 个答案:

答案 0 :(得分:2)

以下是QuerySupport

的文档

只需更新查询对象即可 history.push({ pathname: '/the/path', query: { the: 'query' } }); 你也可以使用链接 <Link to={{ pathname: '/user/bob', query: { showAge: true } }} activeClassName="active">Bob With Query Params</Link>