业务场景:在管理后台,在执行完,增,删,改,操作的时候。我们需要刷新一下页面,重载数据。在JQ中我们会用到location.reload()方法,刷新页面;在vue中,这里需要用到一个 provide / inject 这对用例。(其他方法:this.$router.go(0),会强制刷新,出现空白页面体验不好)
这对选项需要一起使用,以允许一个祖先组件向其所有子孙后代注入一个依赖,不论组件层次有多深,并在起上下游关系成立的时间里始终生效。
实现原理就是通过控制router-view 的显示与隐藏,来重渲染路由区域,重而达到页面刷新的效果,show -> flase -> show
具体代码如下:
1.首先在我们的根组件APP.vue里面,写入刷新方法,路由初始状态是显示的
<pre style="margin: 0px; padding: 0px; overflow-wrap: break-word; font-family: Menlo, Monaco, Consolas, "Courier New", monospace !important; font-size: 15px !important;"><template>
<div id="app">
<keep-alive>
<router-view v-show="$route.meta.keepAlive"/>
</keep-alive>
<router-view v-if="isRouterAlive"/>
<Tabbar v-show="$route.meta.showFooter"></Tabbar>
</div>
</template>
<script>
2. 样式重置 common.css
import "./assets/common.css" import SHeader from './components_c/SearchHeader.vue' import Tabbar from './components_c/Tabbar' export default {
name: 'App',
provide(){ return{
reload:this.reload
}
},
data(){ return{
isRouterAlive:true }
},
components:{
SHeader,
Tabbar
},
methods: {
reload (){ this.isRouterAlive = false
this.$nextTick(function(){ this.isRouterAlive = true })
}
}
} </script>
<style lang="scss" scoped>
</style>
<router-view v-if="isRouterAlive"></router-view>
在isRouterAlive 为true的地方 使用刷新 ,然后在其他组件或者页面中调用相应方法就行
网友评论