Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_vue
提交
23ef77c2
S
skill_tree_vue
项目概览
CSDN 技术社区
/
skill_tree_vue
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_vue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
23ef77c2
编写于
4月 20, 2022
作者:
Z
zhaoss
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2.2.6小节习题、关键字添加
上级
9c765ed8
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
155 addition
and
0 deletion
+155
-0
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/config.json
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/config.json
+18
-0
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.json
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.json
+8
-0
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.md
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.md
+129
-0
未找到文件。
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/config.json
0 → 100644
浏览文件 @
23ef77c2
{
"node_id"
:
"vue-1dc4d9ad634f4b2ab0fbae0dd628789e"
,
"keywords"
:
[
"路由重定向和别名"
,
"路由重定向"
,
"别名"
],
"children"
:
[],
"export"
:
[
"exercises.json"
],
"keywords_must"
:
[
"Vue"
,
"路由"
],
"keywords_forbid"
:
[]
}
\ No newline at end of file
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.json
0 → 100644
浏览文件 @
23ef77c2
{
"type"
:
"code_options"
,
"author"
:
null
,
"source"
:
"exercises.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"17442c8cb5f14f6fa39fc55f4700563c"
}
\ No newline at end of file
data/2.Vue中阶/2.Vue-router/6.路由重定向和别名/exercises.md
0 → 100644
浏览文件 @
23ef77c2
# 路由重定向和别名
<div
style=
"color: pink;"
>
小常识:
</div>
<br>
**重定向**
重定向也是通过 routes 配置来完成,下面例子是从
`/home`
重定向到
`/`
:
```
javascript
const
routes
=
[{
path
:
'
/home
'
,
redirect
:
'
/
'
}]
```
重定向的目标也可以是一个命名的路由:
```
javascript
const
routes
=
[{
path
:
'
/home
'
,
redirect
:
{
name
:
'
homepage
'
}
}]
```
甚至是一个方法,动态返回重定向目标:
```
javascript
const
routes
=
[
{
// /search/screens -> /search?q=screens
path
:
'
/search/:searchText
'
,
redirect
:
to
=>
{
// 方法接收目标路由作为参数
// return 重定向的字符串路径/路径对象
return
{
path
:
'
/search
'
,
query
:
{
q
:
to
.
params
.
searchText
}
}
},
},
{
path
:
'
/search
'
,
// ...
},
]
```
请注意,导航守卫并没有应用在跳转路由上,而仅仅应用在其目标上。在上面的例子中,在 /home 路由中添加 beforeEnter 守卫不会有任何效果。
在写 redirect 的时候,可以省略 component 配置,因为它从来没有被直接访问过,所以没有组件要渲染。唯一的例外是嵌套路由:如果一个路由记录有 children 和 redirect 属性,它也应该有 component 属性。
**相对重定向**
也可以重定向到相对位置:
```
javascript
const
routes
=
[
{
path
:
'
/users/:id/posts
'
,
redirect
:
to
=>
{
// 方法接收目标路由作为参数
// return 重定向的字符串路径/路径对象
},
},
]
```
**别名**
重定向是指当用户访问
`/home`
时,URL 会被
`/`
替换,然后匹配成
`/`
。那么什么是别名呢?
将
`/`
别名为
`/home`
,意味着当用户访问 /home 时,URL 仍然是
`/home`
,但会被匹配为用户正在访问 /。
上面对应的路由配置为:
```
javascript
const
routes
=
[{
path
:
'
/
'
,
component
:
Homepage
,
alias
:
'
/home
'
}]
```
通过别名,你可以自由地将 UI 结构映射到一个任意的 URL,而不受配置的嵌套结构的限制。使别名以 / 开头,以使嵌套路径中的路径成为绝对路径。你甚至可以将两者结合起来,用一个数组提供多个别名:
```
javascript
const
routes
=
[
{
path
:
'
/users
'
,
component
:
UsersLayout
,
children
:
[
// 为这 3 个 URL 呈现 UserList
// - /users
// - /users/list
// - /people
{
path
:
''
,
component
:
UserList
,
alias
:
[
'
/people
'
,
'
list
'
]
},
],
},
]
```
如果你的路由有参数,请确保在任何绝对别名中包含它们:
```
javascript
const
routes
=
[
{
path
:
'
/users/:id
'
,
component
:
UsersByIdLayout
,
children
:
[
// 为这 3 个 URL 呈现 UserDetails
// - /users/24
// - /users/24/profile
// - /24
{
path
:
'
profile
'
,
component
:
UserDetails
,
alias
:
[
'
/:id
'
,
''
]
},
],
},
]
```
关于 SEO 的注意事项: 使用别名时,一定要定义规范链接.
<br>
<div
style=
"color: pink;"
>
小测试:
</div
>
根据上方资料,以下关于路由重定向的说法不正确的是?
<br/><br/>
## 答案
重定向不可以使用相对位置
## 选项
### A
利用redirect进行重定向
### B
在写 redirect 的时候,可以省略 component 配置
### C
使用 alias 进行别名的设置
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录