您好,登錄后才能下訂單哦!
這篇文章主要介紹vue.js監聽路由變化的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
vue.js監聽路由變化的方法:1、通過watch實現,代碼為【watch:{$route(to,from){console.log(to.path);}】;2、key是用來阻止“復用”的,代碼為【<router-view :key= 】。
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 './components/Tabbar' import mTabbarItem from './components/TabbarItem' // 引入 vuex 的兩個方法 import {mapGetters, mapActions} from 'vuex' export default { name: 'app', // 計算屬性 computed:mapGetters([ // 從 getters 中獲取值 'tabbarShow' ]), // 監聽,當路由發生變化的時候執行 watch:{ $route(to,from){ if(to.path == '/' || to.path == '/Prisoner' || to.path == '/Goods' || to.path == '/Time' || to.path == '/Mine'){ /** * $store來自Store對象 * dispatch 向 actions 發起請求 */ this.$store.dispatch('showTabBar'); }else{ this.$store.dispatch('hideTabBar'); } } }, 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>
以上是“vue.js監聽路由變化的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。