ホームページ > 記事 > ウェブフロントエンド > vue.js がルーティングの変更を監視する方法
ルート変更を監視する Vue.js の方法: 1. watch を通じて実装されるコードは [watch:{$route(to,from){console.log(to.path);}]; 2. key 「再利用」を防ぐために使用されます。コードは [
このチュートリアルの動作環境: Windows10 システム、vue2.9、この記事はすべてのブランドのコンピューターに適用されます。
【おすすめ関連記事: vue.js】
#ルーティングの変更を監視する vue.js の方法:
方法 1: 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); } }
方法 2: キーは「再利用」を防ぐために使用されます
Vue は、「これら 2 つの要素は完全に独立しているため、再利用しないでください」と宣言する方法を提供します。一意の値 (Vue ドキュメントの元の単語) を持つキー属性を追加するだけです。<router-view :key="key"></router-view> computed: { key() { return this.$route.name !== undefined? this.$route.name +new Date(): this.$route +new Date() } }計算された属性と
Date() を使用すると、キーが毎回異なることを保証できるため、必要に応じてデータを更新できます。
方法 3: 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>
関連する無料学習の推奨事項:JavaScript (ビデオ) )
以上がvue.js がルーティングの変更を監視する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。