exercises.md 2.6 KB
Newer Older
Z
zhaoss 已提交
1 2
# 路由组件传参

Z
zhaoss 已提交
3
 <div style="color: pink;font-size:24px">小常识:</div>
Z
zhaoss 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
<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。