Vue Router default child route not loading initially(VUE路由器默认子路由最初未加载)
问题描述
我已经设置了一个简单的VUE(使用VUE-Router和Vuentify)项目,并且我正在尝试获取访问父路由时要加载的默认子路由。
我已尽最大努力按照VUE文档执行此操作,但默认子路由在我访问其父路由时根本不会加载。
以下是router.js
文件中的代码:
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home'
import Details from './views/Details'
import List from './views/List'
import NotFound from './views/NotFound'
import Secondary from './views/Secondary'
import Sections from './views/Sections'
Vue.use(Router)
export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'route.home',
component: Home
},
{
path: '/list',
name: 'route.list',
component: List
},
{
props: true,
path: '/sections/:id',
name: 'route.sections',
component: Sections,
children: [
{
alias: '',
path: 'details',
name: 'route.details',
component: Details
},
{
path: 'secondary',
name: 'route.secondary',
component: Secondary
}
]
},
{
path: '*',
name: 'route.notfound',
component: NotFound
}
]
})
这里有一个指向CodeSandbox.io项目的链接:
https://codesandbox.io/s/l41zk6olqz
如果您在沙箱中执行以下步骤,您将看到正在发生的情况:
- 在主页页面上,单击转到列表链接
- 在列表页上,单击转到节链接
- 加载Sections页面时,我希望加载默认子路由(名为
route.details
),但是它没有
如果您单击选项卡列表中的详细信息链接,详细信息页面确实会加载。 我确信这只是一个简单的错误,但是我看不见树木而看不到树木。
提前感谢。
更新(2019-04-03@07:00):
进一步挖掘一下,下面的方法似乎奏效了:
router.js
...
{
props: true,
path: '/sections/:id',
// name: 'route.sections',
component: Sections,
children: [
{
alias: '',
path: 'details',
name: 'route.details',
component: Details
},
{
path: 'secondary',
name: 'route.secondary',
component: Secondary
}
]
}
...
,然后将router-link
从:to="{ name: 'route.sections', params: { id: 1 } }"
更改为:to="{ name: 'route.details', params: { id: 1 } }"
现在解析默认子路由。
这是意料之中的事吗?
我从这里获得信息,因此回答:https://stackoverflow.com/a/50065601/9127864
更新(2019-04-03@07:28):
更进一步的挖掘表明,这也是可能的:
router.js
...
{
props: true,
path: '/sections/:id',
name: 'route.sections',
component: Sections,
redirect: {
name: 'route.details'
},
children: [
{
alias: '',
path: 'details',
name: 'route.details',
component: Details
},
{
path: 'secondary',
name: 'route.secondary',
component: Secondary
}
]
}
...
然后我可以将router-link
改回:to="{ name: 'route.sections', params: { id: 1 } }"
,现在用户访问父路由器时会加载默认子路由。
希望这能在将来帮助其他人。
推荐答案
以下是我发现的有效方法:
...
{
props: true,
path: '/sections/:id',
name: 'route.sections',
component: Sections,
redirect: {
name: 'route.details'
},
children: [
{
alias: '',
path: 'details',
name: 'route.details',
component: Details
},
{
path: 'secondary',
name: 'route.secondary',
component: Secondary
}
]
}
...
添加redirect: { name: 'route.details' }
现在会使父路由重定向到选定的子路由。
这篇关于VUE路由器默认子路由最初未加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:VUE路由器默认子路由最初未加载
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01