【发布时间】:2016-10-28 09:31:54
【问题描述】:
谁能帮我解决以下问题:
<Route path="/" component={ App } >
<Route path="posts/(:id)" component={ PostsIndex } />
<Route path="admin" component={ Admin } />
</Route>
当我添加动态路由 (:id) 时,我收到一个错误:[react-router] Location "/posts" did not match any routes.
我删除了 (:id),一切正常。
非常感谢您的帮助
【问题讨论】:
-
尝试将 (:id) 替换为 :id 并告诉我是否可行。
-
不是 :id 也不是 (:id)
标签: reactjs react-router