Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_vue
提交
9c765ed8
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看板
提交
9c765ed8
编写于
4月 20, 2022
作者:
Z
zhaoss
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2.2.5小节习题、关键字添加
上级
339d7551
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
121 addition
and
0 deletion
+121
-0
data/2.Vue中阶/2.Vue-router/5.路由组件传参/config.json
data/2.Vue中阶/2.Vue-router/5.路由组件传参/config.json
+15
-0
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.json
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.json
+8
-0
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.md
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.md
+98
-0
未找到文件。
data/2.Vue中阶/2.Vue-router/5.路由组件传参/config.json
0 → 100644
浏览文件 @
9c765ed8
{
"node_id"
:
"vue-2e2517cbf7234b6da6951b30e050dda9"
,
"keywords"
:
[
"路由组件传参"
],
"children"
:
[],
"export"
:
[
"exercises.json"
],
"keywords_must"
:
[
"Vue"
],
"keywords_forbid"
:
[]
}
\ No newline at end of file
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.json
0 → 100644
浏览文件 @
9c765ed8
{
"type"
:
"code_options"
,
"author"
:
null
,
"source"
:
"exercises.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"9dad4fcbf6e94de18af2f6117af59322"
}
\ No newline at end of file
data/2.Vue中阶/2.Vue-router/5.路由组件传参/exercises.md
0 → 100644
浏览文件 @
9c765ed8
# 路由组件传参
<div
style=
"color: pink;"
>
小常识:
</div>
<br>
**将 props 传递给路由组件**
在你的组件中使用
`$route`
会与路由紧密耦合,这限制了组件的灵活性,因为它只能用于特定的 URL。虽然这不一定是件坏事,但我们可以通过 props 配置来解除这种行为:
我们可以将下面的代码
```
javascript
const
User
=
{
template
:
'
<div>User {{ $route.params.id }}</div>
'
}
const
routes
=
[{
path
:
'
/user/:id
'
,
component
:
User
}]
```
替换成
```
javascript
const
User
=
{
props
:
[
'
id
'
],
template
:
'
<div>User {{ id }}</div>
'
}
const
routes
=
[{
path
:
'
/user/:id
'
,
component
:
User
,
props
:
true
}]
```
这允许你在任何地方使用该组件,使得该组件更容易重用和测试。
**布尔模式**
当 props 设置为 true 时,
`route.params`
将被设置为组件的 props。
**命名视图**
对于有命名视图的路由,你必须为每个命名视图定义 props 配置:
```
javascript
const
routes
=
[
{
path
:
'
/user/:id
'
,
components
:
{
default
:
User
,
sidebar
:
Sidebar
},
props
:
{
default
:
true
,
sidebar
:
false
}
}
]
```
**对象模式**
当 props 是一个对象时,它将原样设置为组件 props。当 props 是静态的时候很有用。
```
javascript
const
routes
=
[
{
path
:
'
/promotion/from-newsletter
'
,
component
:
Promotion
,
props
:
{
newsletterPopup
:
false
}
}
]
```
**函数模式**
你可以创建一个返回 props 的函数。这允许你将参数转换为其他类型,将静态值与基于路由的值相结合等等。
```
javascript
const
routes
=
[
{
path
:
'
/search
'
,
component
:
SearchUser
,
props
:
route
=>
({
query
:
route
.
query
.
q
})
}
]
```
`URL /search?q=vue`
将传递
`{query: 'vue'}`
作为 props 传给 SearchUser 组件。
请尽可能保持 props 函数为无状态的,因为它只会在路由发生变化时起作用。如果你需要状态来定义 props,请使用包装组件,这样 vue 才可以对状态变化做出反应。
<br>
<div
style=
"color: pink;"
>
小测试:
</div
>
根据上方资料,以下关于路由组件传参的说法不正确的是?
<br/><br/>
## 答案
当 props 是一个对象时,它将原样设置为组件 props。当 props 不是静态的时候很有用。
## 选项
### A
可以创建一个返回 props 的函数。将参数转换为其他类型,将静态值与基于路由的值相结合。
### B
对于有命名视图的路由,你必须为每个命名视图定义 props 配置
### C
当 props 设置为 true 时,route.params 将被设置为组件的 props。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录