详解vue几种主动刷新的方法总结

当我们在做项目时,我们需要做当前页面的刷新来达到数据更新的目的,在此我们大概总结了几种常用的页面刷新的方法。

1.window.location.reload(),是原生JS提供的方法,this.$router.go(0):是vue路由里面的一种方法,这两种方法都可以达到页面刷新的目的,简单粗暴,但是用户体验不好,相当于按F5刷新页面,会有短暂的白屏,相当于页面的重新载入。

2.通过路由跳转的方法刷新,具体思路是点击按钮跳转一个空白页,然后再马上跳回来:

当前页面:

<template> <div> <el-button type="primary" @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:'https://www.jb51.net/', name:'father' }) } } </script>

当点击按钮时地址栏会有快速的地址切换过程。

3.控制<router-view></router-view>的显示与否,在全局组件注册一个方法,该方法控制router-view的显示与否,在子组件调用即可:

APP.vue

<template> <div> <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" @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页进行删除操作,如果按照以往的刷新方法,刷新完后便进入了第一页,这肯定不是我们想要的,这时候我们常用的做法是重新调用数据渲染方法,通常我们会有获取数据接口,删除接口等等,页面加载时调用获取数据的方法,当我们执行删除操作时,再重新调用获取数据的方法即可。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/9801927f3ec8b999ab5293841ca0f29b.html