vue组件独享守卫钩子函数参数详解(beforeRouteEnter、beforeRouteUpdate、beforeRouteLeave)

首先在demo下面的components下面新建一个test.vue组件vue

test组件代码ide

<template>
  <div class="test_box">
    <p @click="go">测试组件内部守卫的做用,点击跳到HelloWorld</p>
  </div>
</template>
<script>
export default {
  data() {
    return {

    }
  },
  methods: {
    go() {
      this.$router.push({ name: 'HelloWorld' })
    }
  },
  beforeRouteEnter(to, from, next) {
    console.log(this, 'beforeRouteEnter'); // undefined
    console.log(to, '组件独享守卫beforeRouteEnter第一个参数');
    console.log(from, '组件独享守卫beforeRouteEnter第二个参数');
    console.log(next, '组件独享守卫beforeRouteEnter第三个参数');
    next(vm => {
      //由于当钩子执行前,组件实例还没被建立
      // vm 就是当前组件的实例至关于上面的 this,因此在 next 方法里你就能够把 vm 当 this 来用了。
      console.log(vm);//当前组件的实例
    });
  },
  beforeRouteUpdate(to, from, next) {
    //在当前路由改变,可是该组件被复用时调用
    //对于一个带有动态参数的路径 /good/:id,在 /good/1 和 /good/2 之间跳转的时候,
    // 因为会渲染一样的good组件,所以组件实例会被复用。而这个钩子就会在这个状况下被调用。
    // 能够访问组件实例 `this`
    console.log(this, 'beforeRouteUpdate'); //当前组件实例
    console.log(to, '组件独享守卫beforeRouteUpdate第一个参数');
    console.log(from, '组件独享守beforeRouteUpdate卫第二个参数');
    console.log(next, '组件独享守beforeRouteUpdate卫第三个参数');
    next();
  },
  beforeRouteLeave(to, from, next) {
    // 导航离开该组件的对应路由时调用
    // 能够访问组件实例 `this`
    console.log(this, 'beforeRouteLeave'); //当前组件实例
    console.log(to, '组件独享守卫beforeRouteLeave第一个参数');
    console.log(from, '组件独享守卫beforeRouteLeave第二个参数');
    console.log(next, '组件独享守卫beforeRouteLeave第三个参数');
    next();
  }
}

</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>


</style>

helloWord组件代码post

<template>
  <div class="sider_box">
      <p @click="go">第一个页面</p>
      <p @click="goTest">触发让它跳到test页面检查组件守卫功能</p>
  </div>
</template>
<script>
export default {
  data() {
    return {

    }
  },
  methods: {
    go(){
      this.$router.push({name:'navMenu'})
    },
    goTest(){
      this.$router.push({name:'test'})
    }
  }
}

</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>

先从helloword跳到test能够看到控制台打印测试

再从test跳到helloword能够看到打印以下:this

 

 

相关文章
相关标签/搜索