React Router V4仅允许URL中的某些参数

时间:2017-11-18 17:34:42

标签: reactjs react-router react-router-v4

我正在使用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是可选语言参数,应与ende或不存在的模式匹配。 例如,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组件。

有可能吗?如何实现?
示例非常感谢

1 个答案:

答案 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}/>

further reading