请教下 Vue3 缓存组件删除问题

Artiver · 2024-7-29 22:13:27 · 88 次点击
大家好,我最近在学习 Vue3 ,逛 GitHub 看到了一个项目,fork 过来边改边学习,项目地址是:[vue3-admin-box]( https://github.com/Artifer/vue3-admin-box),已注明 fork 的原仓库和 License 。

这个后台系统实现了标签页功能,我在组件里的 onBeforeUnmount 方法打了一行 log 用于标识。

```javascript
onBeforeUnmount(() => {
  console.log('beforeUnmount')
  editor.dispose()
})
```

但是当前存在一个问题,当我在**当前页面**点击关闭按钮时,就是下图的 VScode 标签页的 x 按钮,页面关闭后,并不能触发组件的 onBeforeUnmount 方法(图床没法传 gif )。

[![pkLN0HJ.png]( https://s21.ax1x.com/2024/07/29/pkLN0HJ.png)]( https://imgse.com/i/pkLN0HJ)

但是,当我在其他页面,例如**主页**,点击 VScode 的 x 按钮,就能触发。

[![pkLNc36.png]( https://s21.ax1x.com/2024/07/29/pkLNc36.png)]( https://imgse.com/i/pkLNc36)

不明白这是为什么,有大佬能说下吗?我该如何修正代码,谢谢。
举报· 88 次点击
登录 注册 站外分享
7 条回复  
helloWorldzsj 小成 2024-7-30 08:57:43
从描述看,好像两者的区别是在当前页直接点 x 没有触发 onBeforeUnmount 方法,可以试试其他标签页有无这个问题,如果仍然存在的话,就要看下标签页组件这块的逻辑实现是不是有 bug
freedomT 小成 2024-7-30 09:18:40
应该是开启了 keepalive 了,用 onDeactivated()
jy02534655 小成 2024-7-30 09:41:09
@Artifer #3 keepAlive 有个缓存名单,打开 tab 页的时候把页面加到缓存名单,点 x 关闭前先把页面从缓存名单中移除再关闭
okrfuse 小成 2024-7-30 10:57:24
关闭标签页的方法里发送事件总线,要关闭的页面内接收事件总线并执行销毁数据,
shengchao 小成 2024-7-30 11:28:46
按楼主的描述,点叉的逻辑,改成先路由 push ,再去卸载页面缓存,是不是就可以了
daolanfler 小成 2024-7-30 15:00:57
感觉像是 vue keep-alive 的 bug ,关闭当前的 tab 之后,虽然 keep-alive 的 include 属性变了,但是页面组件并没有销毁,还存在于内存里面
```js
// 删除菜单项
function delMenu(menu, nextPath) {
  let index = 0
    index = menuList.value.findIndex((item) => item.path === menu.path)
  if (nextPath) {
    router.push(nextPath)
    return
  }
  // 若删除的是当前页面,回到前一页,若为最后一页,则回到默认的首页
  if (menu.path === activeMenu.path) {
    const prePage = index - 1 > 0 ? menuList.value[index - 1] : {path: defaultMenu.path}
    router.push({path: prePage.path, query: prePage.query || {}})
  }

  setTimeout(() => {
    if (!menu.meta.hideClose) {
      if (menu.meta.cache && menu.name) {
        store.commit('keepAlive/delKeepAliveComponentsName', menu.name)
      }
      menuList.value.splice(index, 1)
    }
  }, 300);
}
```
如楼上所说,改一下顺序确实可以,但是还必须设置延迟 300ms ,有点莫名其妙。
keep-alive 还是少用,感觉不太靠谱,之前写 vue 的时候,在 dev-tools 经常看同一个页面(组件)的几份缓存,而官方也没有提供清理缓存的  api https://github.com/vuejs/rfcs/pull/284
lovelylain 小成 2024-7-30 21:33:16
@daolanfler 延迟换成 await nextTick()呢?
返回顶部