91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

keep-alive組件怎么在vue.js中使用

發布時間:2021-03-26 17:12:54 來源:億速云 閱讀:203 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關keep-alive組件怎么在vue.js中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

keep-alive是Vue.js的一個內置組件。<keep-alive> 包裹動態組件時,會緩存不活動的組件實例,而不是銷毀它們。它自身不會渲染一個 DOM 元素,也不會出現在父組件鏈中。 當組件在 <keep-alive> 內被切換,它的 activated 和 deactivated 這兩個生命周期鉤子函數將會被對應執行。 它提供了include與exclude兩個屬性,允許組件有條件地進行緩存。

舉個栗子

<keep-alive>
  <router-view v-if="$route.meta.keepAlive"></router-view>
 </keep-alive>
 <router-view v-if="!$route.meta.keepAlive"></router-view>

keep-alive組件怎么在vue.js中使用

在點擊button時候,兩個input會發生切換,但是這時候這兩個輸入框的狀態會被緩存起來,input標簽中的內容不會因為組件的切換而消失。

* include - 字符串或正則表達式。只有匹配的組件會被緩存。
* exclude - 字符串或正則表達式。任何匹配的組件都不會被緩存。

<keep-alive include="a">
 <component></component>
</keep-alive>

只緩存組件別民name為a的組件

<keep-alive exclude="a">
 <component></component>
</keep-alive>

除了name為a的組件,其他都緩存下來

生命周期鉤子

生命鉤子 keep-alive提供了兩個生命鉤子,分別是activated與deactivated。

因為keep-alive會將組件保存在內存中,并不會銷毀以及重新創建,所以不會重新調用組件的created等方法,需要用activated與deactivated這兩個生命鉤子來得知當前組件是否處于活動狀態。

深入keep-alive組件實現

keep-alive組件怎么在vue.js中使用 

查看vue--keep-alive組件源代碼可以得到以下信息

created鉤子會創建一個cache對象,用來作為緩存容器,保存vnode節點。

props: {
 include: patternTypes,
 exclude: patternTypes,
 max: [String, Number]
},
created () {
 // 創建緩存對象
 this.cache = Object.create(null)
 // 創建一個key別名數組(組件name)
 this.keys = []
},

destroyed鉤子則在組件被銷毀的時候清除cache緩存中的所有組件實例。

destroyed () {
 /* 遍歷銷毀所有緩存的組件實例*/
 for (const key in this.cache) {
  pruneCacheEntry(this.cache, key, this.keys)
 }
},

:::demo

render () {
 /* 獲取插槽 */
 const slot = this.$slots.default
 /* 根據插槽獲取第一個組件組件 */
 const vnode: VNode = getFirstComponentChild(slot)
 const componentOptions: ?VNodeComponentOptions = vnode && vnode.componentOptions
 if (componentOptions) {
 // 獲取組件的名稱(是否設置了組件名稱name,沒有則返回組件標簽名稱)
 const name: ?string = getComponentName(componentOptions)
 // 解構對象賦值常量
 const { include, exclude } = this
 if ( /* name不在inlcude中或者在exlude中則直接返回vnode */
  // not included
  (include && (!name || !matches(include, name))) ||
  // excluded
  (exclude && name && matches(exclude, name))
 ) {
  return vnode
 }
 const { cache, keys } = this
 const key: ?string = vnode.key == null
  // same constructor may get registered as different local components
  // so cid alone is not enough (#3269)
  ? componentOptions.Ctor.cid + (componentOptions.tag ? `::${componentOptions.tag}` : '')
  : vnode.key
 if (cache[key]) { // 判斷當前是否有緩存,有則取緩存的實例,無則進行緩存
  vnode.componentInstance = cache[key].componentInstance
  // make current key freshest
  remove(keys, key)
  keys.push(key)
 } else {
  cache[key] = vnode
  keys.push(key)
  // 判斷是否設置了最大緩存實例數量,超過則刪除最老的數據,
  if (this.max && keys.length > parseInt(this.max)) {
  pruneCacheEntry(cache, keys[0], keys, this._vnode)
  }
 }
 // 給vnode打上緩存標記
 vnode.data.keepAlive = true
 }
 return vnode || (slot && slot[0])
}
// 銷毀實例
function pruneCacheEntry (
 cache: VNodeCache,
 key: string,
 keys: Array<string>,
 current?: VNode
) {
 const cached = cache[key]
 if (cached && (!current || cached.tag !== current.tag)) {
 cached.componentInstance.$destroy()
 }
 cache[key] = null
 remove(keys, key)
}
// 緩存
function pruneCache (keepAliveInstance: any, filter: Function) {
 const { cache, keys, _vnode } = keepAliveInstance
 for (const key in cache) {
 const cachedNode: ?VNode = cache[key]
 if (cachedNode) {
  const name: ?string = getComponentName(cachedNode.componentOptions)
  // 組件name 不符合filler條件, 銷毀實例,移除cahe
  if (name && !filter(name)) {
  pruneCacheEntry(cache, key, keys, _vnode)
  }
 }
 }
}
// 篩選過濾函數
function matches (pattern: string | RegExp | Array<string>, name: string): boolean {
 if (Array.isArray(pattern)) {
 return pattern.indexOf(name) > -1
 } else if (typeof pattern === 'string') {
 return pattern.split(',').indexOf(name) > -1
 } else if (isRegExp(pattern)) {
 return pattern.test(name)
 }
 /* istanbul ignore next */
 return false
}
// 檢測 include 和 exclude 數據的變化,實時寫入讀取緩存或者刪除
mounted () {
 this.$watch('include', val => {
 pruneCache(this, name => matches(val, name))
 })
 this.$watch('exclude', val => {
 pruneCache(this, name => !matches(val, name))
 })
},

:::

通過查看Vue源碼可以看出,keep-alive默認傳遞3個屬性,include 、exclude、max, max 最大可緩存的長度

結合源碼我們可以實現一個可配置緩存的router-view

<!--exclude - 字符串或正則表達式。任何匹配的組件都不會被緩存。-->
<!--TODO 匹配首先檢查組件自身的 name 選項,如果 name 選項不可用,則匹配它的局部注冊名稱-->
<keep-alive :exclude="keepAliveConf.value">
 <router-view class="child-view" :key="$route.fullPath"></router-view>
</keep-alive>
<!-- 或者 -->
<keep-alive :include="keepAliveConf.value">
 <router-view class="child-view" :key="$route.fullPath"></router-view>
</keep-alive>
<!-- 具體使用 include 還是exclude 根據項目是否需要緩存的頁面數量多少來決定-->

創建一個keepAliveConf.js 放置需要匹配的組件名

// 路由組件命名集合
 var arr = ['component1', 'component2'];
 export default {value: routeList.join()};

配置重置緩存的全局方法

import keepAliveConf from 'keepAliveConf.js'
Vue.mixin({
 methods: {
 // 傳入需要重置的組件名字
 resetKeepAive(name) {
  const conf = keepAliveConf.value;
  let arr = keepAliveConf.value.split(',');
  if (name && typeof name === 'string') {
   let i = arr.indexOf(name);
   if (i > -1) {
    arr.splice(i, 1);
    keepAliveConf.value = arr.join();
    setTimeout(() => {
     keepAliveConf.value = conf
    }, 500);
   }
  }
 },
 }
})

在合適的時機調用調用this.resetKeepAive(name),觸發keep-alive銷毀組件實例;

keep-alive組件怎么在vue.js中使用

Vue.js內部將DOM節點抽象成了一個個的VNode節點,keep-alive組件的緩存也是基于VNode節點的而不是直接存儲DOM結構。它將滿足條件的組件在cache對象中緩存起來,在需要重新渲染的時候再將vnode節點從cache對象中取出并渲染。

上述就是小編為大家分享的keep-alive組件怎么在vue.js中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇仁县| 元氏县| 封丘县| 建瓯市| 固原市| 井研县| 龙江县| 公安县| 合江县| 香格里拉县| 阜新| 台南市| 文水县| 启东市| 汝州市| 三门县| 兴化市| 西宁市| 桑日县| 鲁甸县| 长寿区| 浦东新区| 阜城县| 西吉县| 崇仁县| 乐亭县| 莱芜市| 乐东| 铅山县| 乐至县| 兰考县| 石屏县| 灵武市| 台中县| 林西县| 郧西县| 泉州市| 绍兴市| 新沂市| 墨江| 弥渡县|