如何在react-router中使用匹配查询字符串或哈希的子路由?

时间:2016-03-02 16:21:42

标签: reactjs react-router

在文档中肯定需要更多的例子,但基本上我就是这样的事情,例如:

<Route path="/" component={CoreLayout}>
  <IndexRoute component={IndexLayout} />
  <Route path="foo/bar" component={MyComponent}>
    <Route path="#baz=laa" component={SubComponent} />
  </Route>
</Route>

我已经尝试导入历史属性和所有排序,但无法使其匹配。我们的问题是我们正在构建一个新的移动网站,保持与桌面网站相同的路径,但是我们有一些新的移动路由,我们想要使用哈希添加那些。

如果有人有任何想法,我将不胜感激。感谢

0 个答案:

没有答案