当前位置: 代码网 > it编程>前端脚本>Vue.js > Vue3除了keep-alive还有哪些实现页面缓存详解

Vue3除了keep-alive还有哪些实现页面缓存详解

2024年05月26日 Vue.js 我要评论
前言有这么一个需求:列表页进入详情页后,切换回列表页,需要对列表页进行缓存,如果从首页进入列表页,就要重新加载列表页。对于这个需求,我的第一个想法就是使用keep-alive来缓存列表页,列表和详情页

前言

有这么一个需求:列表页进入详情页后,切换回列表页,需要对列表页进行缓存,如果从首页进入列表页,就要重新加载列表页。

对于这个需求,我的第一个想法就是使用keep-alive来缓存列表页,列表和详情页切换时,列表页会被缓存;从首页进入列表页时,就重置列表页数据并重新获取新数据来达到列表页重新加载的效果。

但是,这个方案有个很不好的地方就是:如果列表页足够复杂,有下拉刷新、下拉加载、有弹窗、有轮播等,在清除缓存时,就需要重置很多数据和状态,而且还可能要手动去销毁和重新加载某些组件,这样做既增加了复杂度,也容易出bug。

接下来说说我的想到的新实现方案(代码基于vue3)。

keep-alive 缓存和清除

keep-alive 缓存原理:进入页面时,页面组件渲染完成,keep-alive 会缓存页面组件的实例;离开页面后,组件实例由于已经缓存就不会进行销毁;当再次进入页面时,就会将缓存的组件实例拿出来渲染,因为组件实例保存着原来页面的数据和dom的状态,那么直接渲染组件实例就能得到原来的页面。

keep-alive 最大的难题就是缓存的清理,如果能有简单的缓存清理方法,那么keep-alive 组件用起来就很爽。

但是,keep-alive 组件没有提供清除缓存的api,那有没有其他清除缓存的办法呢?答案是有的。我们先看看 keep-alive 组件的props:

include - string | regexp | array。只有名称匹配的组件会被缓存。
exclude - string | regexp | array。任何名称匹配的组件都不会被缓存。
max - number | string。最多可以缓存多少组件实例。

从include描述来看,我发现include是可以用来清除缓存,做法是:将组件名称添加到include里,组件会被缓存;移除组件名称,组件缓存会被清除。根据这个原理,用hook简单封装一下代码:

import { ref, nexttick } from 'vue'

const caches = ref<string[]>([])

export default function useroutecache () {
  // 添加缓存的路由组件
  function addcache (componentname: string | string []) {
    if (array.isarray(componentname)) {
      componentname.foreach(addcache)
      return
    }
    
    if (!componentname || caches.value.includes(componentname)) return

    caches.value.push(componentname)
  }

  // 移除缓存的路由组件
  function removecache (componentname: string) {
    const index = caches.value.indexof(componentname)
    if (index > -1) {
      return caches.value.splice(index, 1)
    }
  }
  
  // 移除缓存的路由组件的实例
  async function removecacheentry (componentname: string) {    
    if (removecache(componentname)) {
      await nexttick()
      addcache(componentname)
    }
  }
  
  return {
    caches,
    addcache,
    removecache,
    removecacheentry
  }
}

hook的用法如下:

<router-view v-slot="{ component }">
  <keep-alive :include="caches">
    <component :is="component" />
  </keep-alive>
</router-view>

<script setup lang="ts">
import useroutecache from './hooks/useroutecache'
const { caches, addcache } = useroutecache()

<!-- 将列表页组件名称添加到需要缓存名单中 -->
addcache(['list'])
</script>

清除列表页缓存如下:

import useroutecache from '@/hooks/useroutecache'

const { removecacheentry } = useroutecache()
removecacheentry('list')

此处removecacheentry方法清除的是列表组件的实例,'list' 值仍然在 组件的include里,下次重新进入列表页会重新加载列表组件,并且之后会继续列表组件进行缓存。

列表页清除缓存的时机

进入列表页后清除缓存

在列表页路由组件的beforerouteenter勾子中判断是否是从其他页面(home)进入的,是则清除缓存,不是则使用缓存。

defineoptions({
  name: 'list1',
  beforerouteenter (to: routerecordnormalized, from: routerecordnormalized) {
    if (from.name === 'home') {
      const { removecacheentry } = useroutecache()
      removecacheentry('list1')
    }
  }
})

这种缓存方式有个不太友好的地方:当从首页进入列表页,列表页和详情页来回切换,列表页是缓存的;但是在首页和列表页间用浏览器的前进后退来切换时,我们更多的是希望列表页能保留缓存,就像在多页面中浏览器前进后退会缓存原页面一样的效果。但实际上,列表页重新刷新了,这就需要使用另一种解决办法,点击链接时清除缓存清除缓存

点击链接跳转前清除缓存

在首页点击跳转列表页前,在点击事件的时候去清除列表页缓存,这样的话在首页和列表页用浏览器的前进后退来回切换,列表页都是缓存状态,只要当重新点击跳转链接的时候,才重新加载列表页,满足预期。

// 首页 home.vue

<li>
  <router-link to="/list" @click="removecachebeforeenter">列表页</router-link>
</li>


<script setup lang="ts">
import useroutecache from '@/hooks/useroutecache'

defineoptions({
  name: 'home'
})

const { removecacheentry } = useroutecache()

// 进入页面前,先清除缓存实例
function removecachebeforeenter () {
  removecacheentry('list')
}
</script>

状态管理实现缓存

通过状态管理库存储页面的状态和数据也能实现页面缓存。此处状态管理使用的是pinia。

首先使用pinia创建列表页store:

import { definestore } from 'pinia'

interface item {
  id?: number,
  content?: string
}

const useliststore = definestore('list', {
  // 推荐使用 完整类型推断的箭头函数
  state: () => {
    return {
      isrefresh: true,
      pagesize: 30,
      currentpage: 1,
      list: [] as item[],
      currow: null as item | null
    }
  },
  actions: {
    setlist (data: item []) {
      this.list = data
    },
    setcurrow (data: item) {
      this.currow = data
    },
    setisrefresh (data: boolean) {
      this.isrefresh = data
    }
  }
})

export default useliststore

然后在列表页中使用store:

<div>
  <el-page-header @back="goback">
    <template #content>状态管理实现列表页缓存</template>
  </el-page-header>
  <el-table v-loading="loading" :data="tabledata" border style="width: 100%; margin-top: 30px;">
    <el-table-column prop="id" label="id" />
    <el-table-column prop="content" label="内容"/>
    <el-table-column label="操作">
      <template v-slot="{ row }">
        <el-link type="primary" @click="gotodetail(row)">进入详情</el-link>
        <el-tag type="success" v-if="row.id === liststore.currow?.id">刚点击</el-tag>
      </template>
    </el-table-column>
  </el-table>
  <el-pagination
    v-model:currentpage="liststore.currentpage"
    :page-size="liststore.pagesize"
    layout="total, prev, pager, next"
    :total="liststore.list.length"
  />
</div>
  
<script setup lang="ts">
import useliststore from '@/store/liststore'
const liststore = useliststore()

...
</script>

通过beforerouteenter钩子判断是否从首页进来,是则通过 liststore.$reset() 来重置数据,否则使用缓存的数据状态;之后根据 liststore.isrefresh 标示判断是否重新获取列表数据。

defineoptions({
  beforerouteenter (to: routelocationnormalized, from: routelocationnormalized) {
    if (from.name === 'home') {
      const liststore = useliststore()
      liststore.$reset()
    }
  }
})

onbeforemount(() => {
  if (!liststore.usecache) {
    loading.value = true
    settimeout(() => {
      liststore.setlist(getdata())
      loading.value = false
    }, 1000)
    liststore.usecache = true
  }
})

缺点

通过状态管理去做缓存的话,需要将状态数据都存在stroe里,状态多起来的话,会有点繁琐,而且状态写在store里肯定没有写在列表组件里来的直观;状态管理由于只做列表页数据的缓存,对于一些非受控组件来说,组件内部状态改变是缓存不了的,这就导致页面渲染后跟原来有差别,需要额外代码操作。

页面弹窗实现缓存

将详情页做成全屏弹窗,那么从列表页进入详情页,就只是简单地打开详情页弹窗,将列表页覆盖,从而达到列表页 “缓存”的效果,而非真正的缓存。

这里还有一个问题,打开详情页之后,如果点后退,会返回到首页,实际上我们希望是返回列表页,这就需要给详情弹窗加个历史记录,如列表页地址为 '/list',打开详情页变为 '/list?id=1'。

弹窗组件实现:

// popuppage.vue

<template>
  <div class="popup-page" :class="[!dialogvisible && 'hidden']">
    <slot v-if="dialogvisible"></slot>
  </div>
</template>

<script setup lang="ts">
import { uselockscreen } from 'element-plus'
import { computed, defineprops, defineemits } from 'vue'
import usehistorypopup from './usehistorypopup'

const props = defineprops({
  modelvalue: {
    type: boolean,
    default: false
  },
  // 路由记录
  history: {
    type: object
  },
  // 配置了history后,初次渲染时,如果有url上有history参数,则自动打开弹窗
  auto: {
    type: boolean,
    default: true
  },
  size: {
    type: string,
    default: '50%'
  },
  full: {
    type: boolean,
    default: false
  }
})
const emit = defineemits(
  ['update:modelvalue', 'autoopen', 'autoclose']
)

const dialogvisible = computed<boolean>({ // 控制弹窗显示
  get () {
    return props.modelvalue
  },
  set (val) {
    emit('update:modelvalue', val)
  }
})

uselockscreen(dialogvisible)

usehistorypopup({
  history: computed(() => props.history),
  auto: props.auto,
  dialogvisible: dialogvisible,
  onautoopen: () => emit('autoopen'),
  onautoclose: () => emit('autoclose')
})
</script>

<style lang='less'>
.popup-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  overflow: auto;
  padding: 10px;
  background: #fff;
  
  &.hidden {
    display: none;
  }
}
</style>

弹窗组件调用:

<popup-page 
  v-model="visible" 
  full
  :history="{ id: id }">
  <detail></detail>
</popup-page>

缺点

弹窗实现页面缓存,局限比较大,只能在列表页和详情页中才有效,离开列表页之后,缓存就会失效,比较合适一些简单缓存的场景。

父子路由实现缓存

该方案原理其实就是页面弹窗,列表页为父路由,详情页为子路由,从列表页跳转到详情页时,显示详情页字路由,且详情页全屏显示,覆盖住列表页。

声明父子路由:

{
  path: '/list',
  name: 'list',
  component: () => import('./views/list.vue'),
  children: [
    {
      path: '/detail',
      name: 'detail',
      component: () => import('./views/detail.vue'),
    }
  ]
}

列表页代码:

// 列表页
<template>
  <el-table v-loading="loading" :data="tabledata" border style="width: 100%; margin-top: 30px;">
    <el-table-column prop="id" label="id" />
    <el-table-column prop="content" label="内容"/>
    <el-table-column label="操作">
      <template v-slot="{ row }">
        <el-link type="primary" @click="gotodetail(row)">进入详情</el-link>
        <el-tag type="success" v-if="row.id === currow?.id">刚点击</el-tag>
      </template>
    </el-table-column>
  </el-table>
  <el-pagination
    v-model:currentpage="currentpage"
    :page-size="pagesize"
    layout="total, prev, pager, next"
    :total="list.length"
  />
  
  <!-- 详情页 -->
  <router-view class="popyp-page"></router-view>
</template>

<style lang='less' scoped>
.popyp-page {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  overflow: auto;
}
</style>

总结 

到此这篇关于vue3除了keep-alive还有哪些实现页面缓存的文章就介绍到这了,更多相关vue3页面缓存内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com