How to make a nested react router component load to a new page and not half-way down the page(如何使嵌套的Reaction路由器组件加载到新页面,而不是加载到页面的一半)
问题描述
我当前的情况是,我的App.js
文件中有我的主要父路由/交换机,但在App.js
文件中的某个路由中,我还有另一个组件,该组件也具有自己的<Router>
路由/交换机设置,该组件调用名为<MyJobComponent />
的另一个组件
我设置的文件层次结构如下:
App.js - has route/path to the component <AllJobs />
|
|---> AllJobs.js - has nested route/path to the component <MyJobComponent />
|
|---> MyJobComponent.js - has the <Link to={`/my-job-id/${item.job_id}`}
该组件在此处以AllJobs.js
级别呈现,而不是在App.js
级别呈现,而我希望它呈现在App.js
级别。
<Switch>
<Route exact path="/job-path/:jobID" component={MyJobComponent} />
</Switch>
在<MyJobComponent />
中,我有以下Link to
代码:
<TableCell style={{width: '10%'}}>
<Link
to={`/my-job-id/${item.job_id}`}
style={{ textDecoration: 'underline', color: 'black' }}
>
{item.job_id}
</Link>
</TableCell>
单击此Link to
将使我的页面位于<MyJobComponent />
内页面的一半位置
根据反应路由器嵌套示例
更新查看此示例:React-Router Nested如果您单击Topics
,然后单击子链接Components
,您将看到它在这些子链接下方显示标题components
。
components
。这可能吗?
推荐答案
将此代码移至App.js:
<Switch>
<Route exact path="/job-path/:jobID" component={MyJobComponent} />
</Switch>
这篇关于如何使嵌套的Reaction路由器组件加载到新页面,而不是加载到页面的一半的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使嵌套的Reaction路由器组件加载到新页面,而不是加载到页面的一半
基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01