我正在尝试完成此模式:
我想渲染我的图片库,当点击图片时,需要打开弹出窗口。我想用网址而不是状态/商店更改来做到这一点。例如:
链接:“/gallery/popular/fhoeuwy3928”将在后面呈现画廊,在前面呈现弹出窗口。
在 react-router 3 中,嵌套路由很简单。我怎样才能用 v4 做到这一点?
这些是我目前的路线:
<Route exact path='/' component={Home}/>
<Route path='/gallery/:category' component={Gallery}/>
<Route path='/gallery/:category/:id' component={Popup}/>