我想将视频ID传递到我的URL。
让我们假设用户在列出所有视频的页面上: 视频1 视频2 视频3 视频4
,当前网址为“ /视频”
现在,如果用户单击任何视频,我想将所选视频ID推送到URL。
新网址:“ / videos?id = Video1”
我目前正在使用react-router v3
<Route component={HomePage}>
<IndexRoute component={AssetPage}/>
<Route path='/assets' component={AssetPage}/>
<Route path='/video' component={VideoPage}/>
<Redirect from='*' to='/'/>
</Route>