vue-bus 切换页面后第一次触发事件接收不到

最近在做一个 Vue 的管理系统,有几个页面使用了同一个组件。想使用 vue-bus 进行组件间的通信,子组件发布消息,在父组件的 created 中用 on 监听,然后在父组件的 beforeDestory 中使用 off 销毁(否则会重复多次触发事件)。遇到了一个问题,在使用相同组件的页面间切换后,子组件发布消息时,父组件接收不到,必须刷新一次当前页面才可收到消息。后来发现原因在于 Vue 的生命周期。
测试了一下跳转页面时,两个页面的生命周期钩子的执行顺序,代码如下:

// 页面1
  beforeCreate () {
    console.log('1: beforeCreate');
  },
  created () {
    console.log('1: created');
  },
  beforeMount () {
    console.log('1: beforeMount');
  },
  mounted () {
    console.log('1: mounted');
  },
  beforeUpdate () {
    console.log('1: mounted');
  },
  updated () {
    console.log('1: updated');
  },
  beforeDestroy () {
    console.log('1: beforeDestroy');
  },
  destroyed () {
    console.log('1: destroyed');
  }
// 页面2
  beforeCreate () {
    console.log('2: beforeCreate');
  },
  created () {
    console.log('2: created');
  },
  beforeMount () {
    console.log('2: beforeMount');
  },
  mounted () {
    console.log('2: mounted');
  },
  beforeUpdate () {
    console.log('2: mounted');
  },
  updated () {
    console.log('2: updated');
  },
  beforeDestroy () {
    console.log('2: beforeDestroy');
  },
  destroyed () {
    console.log('2: destroyed');
  }

跳转页面时控制台输出结果:
vue-bus 切换页面后第一次触发事件接收不到_第1张图片
由此得出,跳转页面时,生命周期钩子函数的触发顺序是:新页面 beforeCreate → 新页面 created → 新页面 beforeMount → 旧页面 beforeDestroy → 旧页面 destroyed → 新页面 mounted。猜想可能是新页面在created中创建的 on 监听事件被旧页面在 beforeDestroy 中使用 off 销毁了,所以把父组件的 on 写在了 mounted 中,问题解决。

你可能感兴趣的:(Vue,#,Vue,遇到的问题)