this.$router.go(0)。这种方法虽然代码很少,只有一行,但是体验很差。页面会一瞬间的白屏,体验不是很好

vue-router重新路由到当前页面,页面是不进行刷新的。

location.reload()。这种也是一样,画面一闪,体验不是很好

所以就可以用provide / inject 组合

原理:允许一个祖先组件向其所有子孙后代注入一个依赖,不论组件层次有多深,并在起上下游关系成立的时间里始终生效

先在App.vue里面编写reload方法:

<template>
  <div id="app">
    <router-view v-if="isRouterAlive"></router-view>
  </div>
</template>

<script>
export default {
  name: 'App',
  provide () {
    return {
      reload: this.reload
    }
  },
  data(){
    return{
      input:'',
      isRouterAlive: true
    }
  },
  methods: {
    reload () {
      this.isRouterAlive = false
      this.$nextTick(function () {
        this.isRouterAlive = true
      })
    }
  }
}
</script>

然后就在你要刷新的页面里面操作,在页面注入App.vue组件提供(provide)的 reload 依赖

 最后在你的方法里面直接应用就可以了

this.reload()
 

 参考了:https://segmentfault.com/a/1190000017007631

来完成该功能,并附上笔记

Logo

前往低代码交流专区

更多推荐