Router 实例方法

router.beforeEach

router.beforeResolve

router.afterEach

函数签名:

  1. router.beforeEach((to, from, next) => {
  2. /* 必须调用 `next` */
  3. })
  4. router.beforeResolve((to, from, next) => {
  5. /* 必须调用 `next` */
  6. })
  7. router.afterEach((to, from) => {})

增加全局的导航守卫。参考导航守卫

在 2.5.0+ 这三个方法都返回一个移除已注册的守卫/钩子的函数。

router.push

router.replace

router.go

router.back

router.forward

函数签名:

  1. router.push(location, onComplete?, onAbort?)
  2. router.push(location).then(onComplete).catch(onAbort)
  3. router.replace(location, onComplete?, onAbort?)
  4. router.replace(location).then(onComplete).catch(onAbort)
  5. router.go(n)
  6. router.back()
  7. router.forward()

动态的导航到一个新 URL。参考编程式导航

router.getMatchedComponents

函数签名:

  1. const matchedComponents: Array<Component> = router.getMatchedComponents(location?)

返回目标位置或是当前路由匹配的组件数组 (是数组的定义/构造类,不是实例)。通常在服务端渲染的数据预加载时使用。

router.resolve

函数签名:

  1. const resolved: {
  2. location: Location;
  3. route: Route;
  4. href: string;
  5. } = router.resolve(location, current?, append?)

解析目标位置 (格式和 <router-link>to prop 一样)。

  • current 是当前默认的路由 (通常你不需要改变它)
  • append 允许你在 current 路由上附加路径 (如同 router-link)

router.addRoutes

函数签名:

  1. router.addRoutes(routes: Array<RouteConfig>)

动态添加更多的路由规则。参数必须是一个符合 routes 选项要求的数组。

router.onReady

函数签名:

  1. router.onReady(callback, [errorCallback])

该方法把一个回调排队,在路由完成初始导航时调用,这意味着它可以解析所有的异步进入钩子和路由初始化相关联的异步组件。

这可以有效确保服务端渲染时服务端和客户端输出的一致。

第二个参数 errorCallback 只在 2.4+ 支持。它会在初始化路由解析运行出错 (比如解析一个异步组件失败) 时被调用。

router.onError

函数签名:

  1. router.onError(callback)

注册一个回调,该回调会在路由导航过程中出错时被调用。注意被调用的错误必须是下列情形中的一种:

  • 错误在一个路由守卫函数中被同步抛出;

  • 错误在一个路由守卫函数中通过调用 next(err) 的方式异步捕获并处理;

  • 渲染一个路由的过程中,需要尝试解析一个异步组件时发生错误。