首頁 >web前端 >Vue.js >vue.js怎麼監聽路由變化

vue.js怎麼監聽路由變化

coldplay.xixi
coldplay.xixi原創
2020-11-11 16:16:584877瀏覽

vue.js監聽路由變化的方法:1、透過watch實現,程式碼為【watch:{$route(to,from){console.log(to.path);}】;2、key是用來阻止「重複使用」的,程式碼為【

vue.js怎麼監聽路由變化

本教學操作環境:windows10系統、vue2.9,本文適用於所有品牌的電腦。

【相關文章推薦:vue.js#】

vue.js監聽路由變更的方法:

方法一:透過watch

// 监听,当路由发生变化的时候执行
watch:{
  $route(to,from){
    console.log(to.path);
  }
},

// 监听,当路由发生变化的时候执行
watch: {
  $route: {
    handler: function(val, oldVal){
      console.log(val);
    },
    // 深度观察监听
    deep: true
  }
},

// 监听,当路由发生变化的时候执行
watch: {
  '$route':'getPath'
},
methods: {
  getPath(){
    console.log(this.$route.path);
  }
}

方法二:key是用來阻止「重複使用」的

Vue 為你提供了一種方式來宣告「這兩個元素是完全獨立的-不要復用它們」。只要新增一個具有唯一值的key 屬性即可(Vue文檔原話)

<router-view :key="key"></router-view>
 
computed: {
  key() {
    return this.$route.name !== undefined? this.$route.name +new Date(): this.$route +new Date()
  }
}

使用computed屬性和Date()可以保證每一次的key都是不同的,這樣就可以如願刷新資料了。

方法三:透過vue-router 的鉤子函數beforeRouteEnter beforeRouteUpdate beforeRouteLeave

<script>
  // 引入 Tabbar组件
  import mTabbar from &#39;./components/Tabbar&#39;
  import mTabbarItem from &#39;./components/TabbarItem&#39;
  // 引入 vuex 的两个方法
  import {mapGetters, mapActions} from &#39;vuex&#39;
 
  export default {
    name: &#39;app&#39;,
    // 计算属性
    computed:mapGetters([
      // 从 getters 中获取值
      &#39;tabbarShow&#39;
    ]),
    // 监听,当路由发生变化的时候执行
    watch:{
      $route(to,from){
        if(to.path == &#39;/&#39; || to.path == &#39;/Prisoner&#39; || to.path == &#39;/Goods&#39; ||
         to.path == &#39;/Time&#39; || to.path == &#39;/Mine&#39;){
          /**
           * $store来自Store对象
           * dispatch 向 actions 发起请求
           */
          this.$store.dispatch(&#39;showTabBar&#39;);
        }else{
          this.$store.dispatch(&#39;hideTabBar&#39;);
        }
      }
    },
    beforeRouteEnter (to, from, next) {
      // 在渲染该组件的对应路由被 confirm 前调用
      // 不!能!获取组件实例 `this`
      // 因为当钩子执行前,组件实例还没被创建
    },
    beforeRouteUpdate (to, from, next) {
      // 在当前路由改变,但是该组件被复用时调用
      // 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
      // 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
      // 可以访问组件实例 `this`
    },
    beforeRouteLeave (to, from, next) {
      // 导航离开该组件的对应路由时调用
      // 可以访问组件实例 `this`
    },
    components:{
      mTabbar,
      mTabbarItem
    },
    data() {
      return {
        select:"Building"
      }
    }
  }
</script>

相關免費學習推薦:Java(影片)

以上是vue.js怎麼監聽路由變化的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn