如何在react-router v3中的URL内传递/注入“文本”?

时间:2019-04-26 10:09:48

标签: reactjs react-router

我想将视频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>

0 个答案:

没有答案