为什么此路由器配置无法导航到'/ 1 / abc / home / inbox'? 控制台中没有错误/警告。
在路由器文档中找不到答案。
<Router history={browserHistory}>
<Route path="/:id/:name/home" component={Home}>
<Route path="inbox" component={Inbox}/>
</Route>
</Router>
此代码通过以上链接正确导航到收件箱:
<Router history={browserHistory}>
<Route path="/:id/:name/home" component={Home}/>
<Route path="/:id/:name/home/inbox" component={Inbox}/>
</Router>
谢谢!
答案 0 :(得分:0)
谢谢 0xRm , Elod Szopos 。