exercises.md 3.2 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
<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 进行别名的设置