共计 706 个字符,预计需要花费 2 分钟才能阅读完成。
router 刷新
这种办法页面会一瞬间的白屏
this.$router.go(0)
location
这种也是一样,画面一闪
location.reload()
以上整个浏览器进行了从新加载,闪动,体验不好
provide/inject
容许一个先人组件向其所有子孙后代注入一个依赖, 不管组件档次有多深 ,并在起上下游关系成立的工夫里始终失效。
provide:选项应该是一个对象或返回一个对象的函数。该对象蕴含可注入其子孙的属性。
inject:一个字符串数组,或一个对象,对象的 key 是本地的绑定名
搭配 provide、inject 应用, 首先在主页面 app.vue
<keep-alive include="GjTable">
<router-view v-if="isRouterAlive"></router-view
></keep-alive>
js
export default {provide () {
return {reload: this.reload},
data () {
return {isRouterAlive: true}
},
methods: {reload () {
this.isRouterAlive = false
this.$nextTick(function () {this.isRouterAlive = true})
}
}
}
在页面注入 app.vue 组件提供(provide)的 reload 依赖,在逻辑实现之后(删除或增加 …), 间接 this.reload() 调用,即可刷新以后页面
inject: ['reload'],
// 调用刷新:// 此页面加了缓存须要从新加载数据
this.getgjtype('vue')
this.reload() // 刷新页面
正文完