如何使用path-to-regexp(和react-router-4)来匹配所有不以/ auth开头的路径?

时间:2017-10-28 17:23:03

标签: javascript regex reactjs react-router

我无法弄清楚如何使用react-router-4(以及路径到正则表达式)匹配所有不以/ auth开头的路径

<Switch>
    <Route path="/^(?!\/?auth).+$/"  component={AppWelcome} />
    <Route path="/auth"  component={AppAuth} />
    <Route component={NoMatch} />
</Switch

/^(?!\/?auth).+$/我收到此错误enter image description here

0 个答案:

没有答案