vue3手动控制KeepAlive缓存map。

此方法在生产模式无法使用, vue3生产模式不暴露map。解决方法如下,酌情使用。

const fs = require("fs");
const path = require("path");
const vue_bundler_file = path.resolve(
  __dirname,
  "../node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js"
);
fs.readFile(vue_bundler_file, "utf8", function (err, data) {
  if (err) console.error(err);
  let orginal_str =
    "        if ((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) {\r\n            instance.__v_cache = cache;\r\n        }";
  let target_str =
    "        //if ((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) {\r\n            instance.__v_cache = cache;\r\n        //}";
  const result = data.replace(orginal_str, target_str);
  fs.writeFile(vue_bundler_file, result, "utf8", function (err) {
    if (err) return console.error(err);
  });
});

"build-mb": "node ./config/removeDEV.js &&  vite build --mode production",
首先需要拿到缓存map
```javascript
<KeepAlive
  	ref={(ref) => clearKeepAliveCache.setKeepMap((ref as { [key: string]: any }).$.__v_cache)}
 </KeepAlive>   
```
手动清除缓存

```javascript
import { VNode } from "vue";

class ClearKeepAliveCache {
  private map: null | Map<string, VNode> = null;

  public setKeepMap(map: Map<string, VNode>) {
    this.map = map;
  }

  //删除方法
  public delete(path: string) {
    if (this.map && this.map.has(path)) {
      this.map.delete(path);
    }
  }
}

export default new ClearKeepAliveCache();

```
还是建议使用KeepAlive得exclude属性去操作,我直接操作缓存map纯属是因为缓存了同一组件,造成exclude属性不能满足。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值