标签: 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).+$/我收到此错误
/^(?!\/?auth).+$/