秋天到了,大榕树结了又黑又小的果子,风一吹,果子掉下来了,就成了我们天然的玩具。
当我们在做项目时,我们需要做当前页面的刷新来达到数据更新的目的,在此我们大概总结了几种常用的页面刷新的方法。
1.window.location.reload(),是原生JS提供的方法,this.$router.go(0):是vue路由里面的一种方法,这两种方法都可以达到页面刷新的目的,简单粗暴,但是用户体验不好,相当于按F5刷新页面,会有短暂的白屏,相当于页面的重新载入。
2.通过路由跳转的方法刷新,具体思路是点击按钮跳转一个空白页,然后再马上跳回来:
当前页面:
<template> <div> <el-button type="primary" class="btn" @click="btnaction">摁我刷新页面</el-button> </div> </template> <script> export default{ data(){ return{ } }, mounted(){ }, methods:{ btnaction() { // location.reload() // this.$router.go(0) this.$router.replace({ path:'/empty', name:'empty' }) } } } </script>
空白页面:
<template> <h1> 空页面 </h1> </template> <script> export default{ data() { return{ } }, created(){ this.$router.replace({ path:'/', name:'father' }) } } </script>
当点击按钮时地址栏会有快速的地址切换过程。
3.控制<router-view></router-view>的显示与否,在全局组件注册一个方法,该方法控制router-view的显示与否,在子组件调用即可:
APP.vue
<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 { isRouterAlive: true } }, methods: { reload() { this.isRouterAlive = false this.$nextTick(function() { this.isRouterAlive = true console.log('reload') }) } } } </script>
当前组件:
<template> <div> <el-button type="primary" class="btn" @click="btnaction">摁我刷新页面</el-button> </div> </template> <script> export default{ inject: ['reload'], // 引入方法 data(){ return{ } }, components:{ }, mounted(){ }, methods:{ btnaction() { // location.reload() // this.$router.go(0) // this.$router.replace({ // path:'/empty', // name:'empty' // }) this.reload() // 调用方法 } } } </script>
当点击按钮时所有页面重新渲染。
4.对列表操作后的表格刷新的操作方法:
当我们在操作数据表格时,会对表格进行增删改查,做完操作我们需要对列表进行刷新来达到重新渲染,但是当如果存在分页,我们在比如第3页进行删除操作,如果按照以往的刷新方法,刷新完后便进入了第一页,这肯定不是我们想要的,这时候我们常用的做法是重新调用数据渲染方法,通常我们会有获取数据接口,删除接口等等,页面加载时调用获取数据的方法,当我们执行删除操作时,再重新调用获取数据的方法即可。
本文详解vue几种主动刷新的方法总结到此结束。天空收容每一片云彩,不论其美丑,所以天空宽阔无边。大地拥抱每一寸土地,不论其贫富,所以大地广袤无垠。海洋接纳每一条河流,不论其大小,所以海洋广阔无边。谢谢大家支持!