我正在使用React Router V4并且我使用了此路由器的配置:
<Router history={customHistory}>
<Switch>
<Route exact path={`/:lng?`} component={Page} />
<Route path={`/:lng?/firstUrl`} component={Page}/>
<Route path={`/:lng?/secondUrl`} component={Page}/>
<Route component={NoMatch} />
</Switch>
</Router>
lng
是可选语言参数,应与en
,de
或不存在的模式匹配。
例如,app使用这些路线:
www.website.com/en
www.website.com/en/
www.website.com/ - will load default lang
www.website.com - will load default lang
www.website.com/de
www.website.com/de/
此外,我还在其中定义了函数路由的附加组件:
<ModalRoute component={SomeURL} path={`/:lng?/SomeURL`} parentPath={`/${lang}/`} />
<ModalRoute component={SomeURL2} path={`/:lng?/SomeURL2`} parentPath={`/${lang}/`} />
因此,我希望实现的结果是只允许语言代码(和空参数)被接受,哪些不被接受 - 将被重定向到NoMatch
组件。
有可能吗?如何实现?
示例非常感谢
答案 0 :(得分:5)
您可以在路径中使用正则表达式。
对于具有指定选项的必需参数:
<Route path="/about/:lang(en|de)/" exact component={About}/>
对于可选的参数:
<Route path="/about/:lang?/" exact component={About}/>
对于带有指定选项的可选参数
<Route path="/about/:lang(en|de)?/" exact component={About}/>