react-router v4 嵌套路由问题

发布于 2022-09-11 16:07:59 字数 2130 浏览 20 评论 0

这是App.jsx中配置的最外层路由

<div className="App">
    <HashRouter>
      <Switch>
         <Route exact path="/" component={() => (
           <Redirect to={`/home/index`}/>
         )} />
         <Route  path="/home" component={Home} />
         <Route  path="/login" component={Login} />
         <Route  path="/account" component={Account} />
       </Switch>
     </HashRouter>
</div>

/home 这个组件下有三个嵌套的子路由

<div className="home">
  <h1>Home组件</h1>
  <Switch>
   <Route  path="/home/index" component={HomeIndex} />
   <Route  path="/home/order" component={HomeOrder} />
   <Route  path="/home/assets" component={Assets} />
  </Switch>
</div>

现在我通过this.props.history.push('/home/index')这样跳转/home/index /home/order /home/assets 页面能够正常渲染组件
但是我如果访问this.props.history.push('/home') 这样,子组件不会渲染出来
我想到了通过重定向去跳转/home/index,但是不知道应该怎么写,像App.jsx那样Redirect没用,甚至导致/home/index /home/order /home/assets 访问都不渲染了

我设置Redirect 重定向到/home/index 在控制台报错,Home组件不显示子组件

Warning: You tried to redirect to the same route you're currently on: "/home/index"
<div className="home">
   <Switch>
     <Redirect to={`/home/index`}/>
     <Route  path="/home/index" component={HomeIndex} />
     <Route  path="/home/order" component={HomeOrder} />
     <Route  path="/home/assets" component={Assets} />
   </Switch>
</div>

然后我在Home.jsxcomponentWillMount钩子中去强制跳转/home/index

componentWillMount() {
    this.props.history.push('/home/index')
  }

虽然能实现访问/home跳转到/home/index,但是我认为这样不是正确的处理方式

所以想问问,在react-router中嵌套路由,如何在路由不匹配的情况下,显示默认子组件

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浅听莫相离 2022-09-18 16:08:00

望解答。。尝试了好多遍 重定向

呆橘 2022-09-18 16:08:00

<Redirect to="/home/index" from="/home" exact />

请你别敷衍 2022-09-18 16:08:00

你是不是想访问 /home 进入 HomeIndex?

<div className="home">
   <Switch>
     <Route path="/home" component={HomeIndex} />
     <Route path="/home/index" component={HomeIndex} />
     <Route path="/home/order" component={HomeOrder} />
     <Route path="/home/assets" component={Assets} />
   </Switch>
</div>

这样均能实现了

另外,除非你有特殊需求,其实<Route path="/home/index" component={HomeIndex} />是多余的

子路由应该这样写

<div className="home">
   <Switch>
     <Route exact path="/home" component={HomeIndex} />
     <Route exact path="/home/order" component={HomeOrder} />
     <Route exact path="/home/assets" component={Assets} />
   </Switch>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文