React Router嵌套路由器无法正常工作

时间:2020-06-02 09:40:11

标签: reactjs laravel react-router

我正在使用 laravel 后端创建一个网站,并作为前端库做出反应,并使用React-Router和 我有这个代码

/login

我也尝试切换到

<Switch>
          <Route exact path="/" component={ProductsPage}/>
          <Route path="/category/:id" component={CategoryPage}/>
</Switch>

这是我的 web.php 页面

<Switch>
          <Route exact path="/" component={ProductsPage}/>
          <Route path="/category">
              <Route path="/:id" component={CategoryPage} />
          </Route>

如果我访问/ category / 805,除嵌套路由外,其他所有东西都可以正常工作

0 个答案:

没有答案