vue使用keep-alive後清除緩存的方法

什麼是keepalive?

在平常開發中,有部分組件沒有必要多次初始化,這時,我們需要將組件進行持久化,使組件的狀態維持不變,在下一次展示時,也不會進行重新初始化組件。

也就是說,keepalive 是 Vue 內置的一個組件,可以使被包含的組件保留狀態,或避免重新渲染 。也就是所謂的組件緩存

基本用法

<keep-alive>
    <component />  //你的組件
</keep-alive>

需求:從列表頁進入詳情頁,再返回列表頁時保留查詢條件,但在切換其他tab時,清空查詢條件。

解決:保留查詢條件很簡單,直接引入keep-alive,但是清除的話,vue本身沒有api直接清除,所以要單獨處理。

參考文章:http://aspedrom.com/5HD5

router/index,攔截路由並做處理:

beforeRouteLeave:function(to, from, next){
    // 增加離開路由時清除keep-alive
    if (from && from.meta.rank && to.meta.rank && from.meta.rank == to.meta.rank)
    {//此處判斷是如果返回上一層,你可以根據自己的業務更改此處的判斷邏輯,酌情決定是否摧毀本層緩存。
        if (this.$vnode && this.$vnode.data.keepAlive)
        {
            if (this.$vnode.parent && this.$vnode.parent.componentInstance && this.$vnode.parent.componentInstance.cache)
            {
                if (this.$vnode.componentOptions)
                {
                    var key = this.$vnode.key == null
                                ? this.$vnode.componentOptions.Ctor.cid + (this.$vnode.componentOptions.tag ? `::${this.$vnode.componentOptions.tag}` : '')
                                : this.$vnode.key;
                    var cache = this.$vnode.parent.componentInstance.cache;
                    var keys  = this.$vnode.parent.componentInstance.keys;
                    if (cache[key])
                    {
                        if (keys.length) {
                            var index = keys.indexOf(key);
                            if (index > -1) {
                                keys.splice(index, 1);
                            }
                        }
                        delete cache[key];
                    }
                }
            }
        }
        this.$destroy();
    }
    next();
},

同時在路由中添加meta:

{
    // 賬號列表
    path: '/account',
    name: 'account',
    component: () => import('../views/account/index.vue'),
    meta: { title: '賬號列表' ,rank:1.5}
  },
  {
    // 添加賬號
    path: '/accountadd',
    name: 'accountadd',
    component: () => import('../views/account/add.vue'),
    meta: { title: '添加賬號' ,rank:2.5}
  },
  {
    // 編輯賬號
    path: '/accountedit/:id',
    name: 'accountedit',
    component: () => import('../views/account/add.vue'),
    meta: { title: '編輯賬號' ,rank:2.5}
  },
  {
    // 角色列表
    path: '/role',
    name: 'role',
    component: () => import('../views/role/index.vue'),
    meta: { title: '角色列表' ,rank:1.5}
  },

總結

到此這篇關於vue使用keep-alive後清除緩存的文章就介紹到這瞭,更多相關keep-alive清除緩存內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: