您好,登錄后才能下訂單哦!
小編給大家分享一下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后清除緩存”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。