react-router v4 嵌套路由问题
这是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.jsx
的componentWillMount
钩子中去强制跳转/home/index
componentWillMount() {
this.props.history.push('/home/index')
}
虽然能实现访问/home
跳转到/home/index
,但是我认为这样不是正确的处理方式
所以想问问,在react-router中嵌套路由,如何在路由不匹配的情况下,显示默认子组件
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
望解答。。尝试了好多遍 重定向
<Redirect to="/home/index" from="/home" exact />
你是不是想访问
/home
进入HomeIndex
?这样均能实现了
另外,除非你有特殊需求,其实
<Route path="/home/index" component={HomeIndex} />
是多余的子路由应该这样写