翼度科技»论坛 编程开发 JavaScript 查看内容

Vue3手动清理keep-alive组件缓存的方法详解

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
Vue3中手动清理keep-alive组件缓存的一个解决方案
源码
  1.   if ((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) {
  2.         instance.__v_cache = cache;
  3.     }

  4.     //省略一些代码...

  5.     function pruneCacheEntry(key) {
  6.         const cached = cache.get(key);
  7.         if (!current || cached.type !== current.type) {
  8.             unmount(cached);
  9.         }
  10.         else if (current) {
  11.             // current active instance should no longer be kept-alive.
  12.             // we can't unmount it now but it might be later, so reset its flag now.
  13.             resetShapeFlag(current);
  14.         }
  15.         cache.delete(key);
  16.         keys.delete(key);
  17.     }
复制代码
这里表明我们有两种修改方案:  
方案一:注释 instance.__v_cache = cache; 这行代码的判断条件,也就是注释掉它的if判断,这样无论在什么环境,我们都可以取到__v_cache对象,这样就可以按照上一篇的方案来解决手动释放的问题
方案二:注意到源码中的pruneCacheEntry函数就是通过key来释放缓存,所以如果仅仅是想通过key来释放缓存,那么可以通过将pruneCacheEntry函数暴露出来实现我们的要求

方案一

修改vue.config.js,在文件开头添加下面的代码:  
  1.     const path = require("path");
  2.     const fs = require("fs");
  3.     try {
  4.       const vue_bundler_file = path.resolve(
  5.         __dirname,
  6.         "node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js"
  7.       );
  8.       //使用同步读取文件
  9.       let data = fs.readFileSync(vue_bundler_file, "utf8");
  10.       //如果未添加过
  11.       if (data.indexOf("//__v_cache") < 0) {
  12.         console.log("正在修改源码文件:", vue_bundler_file);
  13.         //先找到__v_cache变量的位置
  14.         let index = data.indexOf("__v_cache");
  15.         if (index >= 0) {
  16.           // 继续往前找if关键字
  17.           index = data.lastIndexOf("if ", index);
  18.           if (index >= 0) {
  19.             //从上一个位置开始
  20.             index -= 1;
  21.             //然后放一个注释
  22.             const comment = " //__v_cache ";
  23.             //然后拼接
  24.             data = data.substring(0, index) + comment + data.substring(index);

  25.             //继续往后找下一个大括号 }
  26.             index = data.indexOf("}", index);
  27.             if (index >= 0) {
  28.               //从上一个位置开始
  29.               index -= 1;
  30.               //然后拼接
  31.               data = data.substring(0, index) + comment + data.substring(index);
  32.             }

  33.             fs.writeFileSync(vue_bundler_file, data, "utf8");
  34.           }
  35.         }
  36.       }
  37.     } catch (er) {
  38.       console.error(er.message);
  39.     }
复制代码
然后重新启动运行项目,就可以按照上一篇的方式,通过 __v_cache 对象来手动清理keep-alive的缓存了。  
  1.     export default {
  2.       setup() {
  3.         const instance = getCurrentInstance();
  4.         const handler = new KeepAliveHandler();
  5.         onMounted(() => {
  6.           const keepAlive = instance.refs.keepAlive;
  7.           handler.bind(keepAlive);
  8.         });
  9.         const remove = (key) => {
  10.           handler.remove(key);
  11.         };

  12.         return {
  13.           remove,
  14.         };
  15.       },
  16.     };
复制代码
如果打开 node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js 文件,搜索 __v_cache ,会看到这样的代码片段:


方案二

在 vue.config.js 中开头添加如下代码:
  1.     const path = require("path");
  2.     const fs = require("fs");
  3.     try {
  4.       const vue_bundler_file = path.resolve(
  5.         __dirname,
  6.         "node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js"
  7.       );
  8.       //使用同步读取文件
  9.       const data = fs.readFileSync(vue_bundler_file, "utf8");
  10.       //如果未添加过
  11.       if (data.indexOf("sharedContext.$pruneCacheEntry") < 0) {
  12.         console.log("正在修改源码文件:", vue_bundler_file);
  13.         //先找到__v_cache变量的位置
  14.         let index = data.indexOf("__v_cache");
  15.         if (index >= 0) {
  16.           // 继续找下一个大括号 }
  17.           index = data.indexOf("}", index);
  18.           if (index >= 0) {
  19.             //从下一个位置开始
  20.             index += 1;
  21.             //然后放一个可以释放的函数
  22.             const remove =
  23.               "        sharedContext.$pruneCacheEntry = (key) => cache.get(key) && pruneCacheEntry(key);";
  24.             //然后拼接
  25.             const result =
  26.               data.substring(0, index) +
  27.               "\r\n" +
  28.               remove +
  29.               "\r\n" +
  30.               data.substring(index);
  31.             fs.writeFileSync(vue_bundler_file, result, "utf8");
  32.           }
  33.         }
  34.       }
  35.     } catch (er) {
  36.       console.error(er.message);
  37.     }
复制代码
  1.     const path = require("path");
  2.     const fs = require("fs");
  3.     try {
  4.       const vue_bundler_file = path.resolve(
  5.         __dirname,
  6.         "node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js"
  7.       );
  8.       //使用同步读取文件
  9.       const data = fs.readFileSync(vue_bundler_file, "utf8");
  10.       //如果未添加过
  11.       if (data.indexOf("sharedContext.$pruneCacheEntry") < 0) {
  12.         console.log("正在修改源码文件:", vue_bundler_file);
  13.         //先找到__v_cache变量的位置
  14.         let index = data.indexOf("__v_cache");
  15.         if (index >= 0) {
  16.           // 继续找下一个大括号 }
  17.           index = data.indexOf("}", index);
  18.           if (index >= 0) {
  19.             //从下一个位置开始
  20.             index += 1;
  21.             //然后放一个可以释放的函数
  22.             const remove =
  23.               "        sharedContext.$pruneCacheEntry = function(key) {\r\n" +
  24.               "            const cached = cache.get(key);\r\n" +
  25.               "            if (cached) {\r\n" +
  26.               "                if (cached.key == current?.key) {\r\n" +
  27.               "                    resetShapeFlag(current);\r\n" +
  28.               "                } else {\r\n" +
  29.               "                    unmount(cached);\r\n" +
  30.               "                }\r\n" +
  31.               "                cache.delete(key);\r\n" +
  32.               "                keys.delete(key);\r\n" +
  33.               "            }\r\n" +
  34.               "        }\r\n"
  35.             //然后拼接
  36.             const result =
  37.               data.substring(0, index) +
  38.               "\r\n" +
  39.               remove +
  40.               "\r\n" +
  41.               data.substring(index);
  42.             fs.writeFileSync(vue_bundler_file, result, "utf8");
  43.           }
  44.         }
  45.       }
  46.     } catch (er) {
  47.       console.error(er.message);
  48.     }
复制代码
之后,我们项目重新运行后,就可以通过ref取到keep-alive组件的引用,然后使用这个引用对象直接使用$pruneCacheEntry函数来删除指定key的缓存了:  
  1.     this.$refs.keepAlive.$pruneCacheEntry("key")
复制代码
如果打开 node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js 文件,搜索 __v_cache ,会看到这样的代码片段:


结语

目前,目前还没有找到更好的解决方案,我自己采用的是第二种方案,算是暂时解决了问题,当然,两种方案可以结合使用。
到此这篇关于Vue3手动清理keep-alive组件缓存的方法详解的文章就介绍到这了,更多相关Vue3清理keep-alive组件缓存内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/javascript/319168dtu.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
来自手机

举报 回复 使用道具