重定向和别名

重定向

重定向也是通过 routes 配置来完成,下面例子是从 /a 重定向到 /b

  1. const routes = [{ path: '/home', redirect: '/' }]

重定向的目标也可以是一个命名的路由:

  1. const routes = [{ path: '/home', redirect: { name: 'homepage' } }]

甚至是一个方法,动态返回重定向目标:

  1. const routes = [
  2. {
  3. // /search/screens -> /search?q=screens
  4. path: '/search/:searchText',
  5. redirect: to => {
  6. // 方法接收目标路由作为参数
  7. // return 重定向的字符串路径/路径对象
  8. return { path: '/search', query: { q: to.params.searchText } }
  9. },
  10. },
  11. {
  12. path: '/search',
  13. // ...
  14. },
  15. ]

请注意,导航守卫并没有应用在跳转路由上,而仅仅应用在其目标上。在下面的例子中,在 /home 路由中添加 beforeEnter 守卫不会有任何效果。

在写 redirect 的时候,可以省略 component 配置,因为它从来没有被直接访问过,所以没有组件要渲染。唯一的例外是嵌套路由:如果一个路由记录有 childrenredirect 属性,它也应该有 component 属性。

相对重定向

也可以重定向到相对位置:

  1. const routes = [
  2. {
  3. path: '/users/:id/posts',
  4. redirect: to => {
  5. // 方法接收目标路由作为参数
  6. // return 重定向的字符串路径/路径对象
  7. },
  8. },
  9. ]

别名

重定向是指当用户访问 /home 时,URL 会被 / 替换,然后匹配成 /。那么什么是别名呢?

**将 / 别名为 /home,意味着当用户访问 /home 时,URL 仍然是 /home,但会被匹配为用户正在访问 /

上面对应的路由配置为:

  1. const routes = [{ path: '/', component: Homepage, alias: '/home' }]

通过别名,你可以自由地将 UI 结构映射到一个任意的 URL,而不受配置的嵌套结构的限制。使别名以 / 开头,以使嵌套路径中的路径成为绝对路径。你甚至可以将两者结合起来,用一个数组提供多个别名:

  1. const routes = [
  2. {
  3. path: '/users',
  4. component: UsersLayout,
  5. children: [
  6. // 为这 3 个 URL 呈现 UserList
  7. // - /users
  8. // - /users/list
  9. // - /people
  10. { path: '', component: UserList, alias: ['/people', 'list'] },
  11. ],
  12. },
  13. ]

如果你的路由有参数,请确保在任何绝对别名中包含它们:

  1. const routes = [
  2. {
  3. path: '/users/:id',
  4. component: UsersByIdLayout,
  5. children: [
  6. // 为这 3 个 URL 呈现 UserDetails
  7. // - /users/24
  8. // - /users/24/profile
  9. // - /24
  10. { path: 'profile', component: UserDetails, alias: ['/:id', ''] },
  11. ],
  12. },
  13. ]

关于 SEO 的注意事项: 使用别名时,一定要定义规范链接.