美文网首页前端开发
Vue Router Api参考(三)

Vue Router Api参考(三)

作者: 李轻舟 | 来源:发表于2019-03-14 06:48 被阅读0次

    Router 实例属性

    router.app

    • 类型: Vue instance

      配置了 router 的 Vue 根实例。

    router.mode

    • 类型: string

      路由使用的模式

    router.currentRoute

    Router 实例方法

    router.beforeEach

    router.beforeResolve

    router.afterEach

    函数签名:

    router.beforeEach((to, from, next) => {
      /* must call `next` */
    })
    
    router.beforeResolve((to, from, next) => {
      /* must call `next` */
    })
    
    router.afterEach((to, from) => {})
    

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

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

    router.push

    router.replace

    router.go

    router.back

    router.forward

    函数签名:

    router.push(location, onComplete?, onAbort?)
    router.replace(location, onComplete?, onAbort?)
    router.go(n)
    router.back()
    router.forward()
    

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

    router.getMatchedComponents

    函数签名:

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

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

    router.resolve

    函数签名:

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

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

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

    router.addRoutes

    函数签名:

    router.addRoutes(routes: Array<RouteConfig>)
    
    

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

    router.onReady

    函数签名:

    router.onReady(callback, [errorCallback])
    
    

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

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

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

    router.onError

    函数签名:

    router.onError(callback)
    
    

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

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

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

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

    路由对象

    一个路由对象 (route object) 表示当前激活的路由的状态信息,包含了当前 URL 解析得到的信息,还有 URL 匹配到的路由记录 (route records)

    路由对象是不可变 (immutable) 的,每次成功的导航后都会产生一个新的对象。

    路由对象出现在多个地方:

    • 在组件内,即 this.$route

    • $route 观察者回调内

    • router.match(location) 的返回值

    • 导航守卫的参数:

      router.beforeEach((to, from, next) => {
        // `to` 和 `from` 都是路由对象
      })
      
      
    • scrollBehavior 方法的参数:

      const router = new VueRouter({
        scrollBehavior (to, from, savedPosition) {
          // `to` 和 `from` 都是路由对象
        }
      })
      
      

    路由对象属性

    • $route.path

      • 类型: string

        字符串,对应当前路由的路径,总是解析为绝对路径,如 "/foo/bar"

    • $route.params

      • 类型: Object

        一个 key/value 对象,包含了动态片段和全匹配片段,如果没有路由参数,就是一个空对象。

    • $route.query

      • 类型: Object

        一个 key/value 对象,表示 URL 查询参数。例如,对于路径 /foo?user=1,则有 $route.query.user == 1,如果没有查询参数,则是个空对象。

    • $route.hash

      • 类型: string

        当前路由的 hash 值 (带 #) ,如果没有 hash 值,则为空字符串。

    • $route.fullPath

      • 类型: string

        完成解析后的 URL,包含查询参数和 hash 的完整路径。

    • $route.matched

      • 类型: Array<RouteRecord>

      一个数组,包含当前路由的所有嵌套路径片段的路由记录 。路由记录就是 routes 配置数组中的对象副本 (还有在 children 数组)。

      const router = new VueRouter({
        routes: [
          // 下面的对象就是路由记录
          { path: '/foo', component: Foo,
            children: [
              // 这也是个路由记录
              { path: 'bar', component: Bar }
            ]
          }
        ]
      })
      
      

      当 URL 为 /foo/bar$route.matched 将会是一个包含从上到下的所有对象 (副本)。

    • $route.name

      当前路由的名称,如果有的话。(查看命名路由)

    • $route.redirectedFrom

      如果存在重定向,即为重定向来源的路由的名字。(参阅重定向和别名)

    组件注入

    注入的属性

    通过在 Vue 根实例的 router 配置传入 router 实例,下面这些属性成员会被注入到每个子组件。

    • this.$router

      router 实例。

    • this.$route

      当前激活的路由信息对象。这个属性是只读的,里面的属性是 immutable (不可变) 的,不过你可以 watch (监测变化) 它。

    增加的组件配置选项

    相关文章

      网友评论

        本文标题:Vue Router Api参考(三)

        本文链接:https://www.haomeiwen.com/subject/sycfmqtx.html