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

溫馨提示×

溫馨提示×

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

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

vue keep-alive組件如何使用

發布時間:2020-10-19 17:09:52 來源:億速云 閱讀:184 作者:小新 欄目:web開發

vue keep-alive組件如何使用?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

keep-alive

keep-alive是vue.js的內置組件,它能夠把不活動的組件的實例保存在內存中,而不是直接的銷毀,它是一個抽象組件,不會被渲染到真實DOM中,也不會出現在父組件鏈中。
它提供了exclude和include兩個屬性,允許組件有條件的緩存。

使用

<keep-alive>
    <comment></comment>
</keep-alive>

上面的comment組件會被緩存起來。

<keep-alive>
    <coma v-if="test"></coma>
    <comb v-else></comb>
</keep-alive>
<button @click="abc"></button>

export default{
    data(){
        reurn{
            test:true
        }
    },
    methods:{
        abc(){
            this.test=!this.test;
        }
    }
}

點擊button的時候coma組件和comb組件會發生切換,但這時候兩個組件的狀態會被緩存起來,假如說a和b組件中都有一個input標簽,這時切換input標簽的值不會改變。

props

keep-alive組件提供了include和exclude兩個屬性來進行有條件的緩存,二者都可以用逗號分隔字符串、正則表達式或則數組表示。

<keep-alive include="a">
    <component></component>
</keep-alive>
//name名為a的組件會被緩存起來

<keep-alive exclude="a">
    <component></component>
</keep-alive>
//name名為a的組件將不會被緩存。

生命鉤子

keep-alive提供了兩個生命鉤子,actived與deactived。
因為keep-alive會把組件保存到內存中,并不會銷毀或則重新構建,所以不會調用組件的creted等方法,需要使用actived和deactived兩個鉤子判斷組件是否處于活動狀態。

深入keep-alive組件的實現

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

created{
    this.cache=Object.create(null);
}

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

/* destroyed鉤子中銷毀所有cache中的組件實例 */
destroyed () {
    for (const key in this.cache) {
        pruneCacheEntry(this.cache[key])
    }
},

接下來是render函數。

render () {
    /* 得到slot插槽中的第一個組件 */
    const vnode: VNode = getFirstComponentChild(this.$slots.default)

    const componentOptions: ?VNodeComponentOptions = vnode && vnode.componentOptions
    if (componentOptions) {
        // check pattern
        /* 獲取組件名稱,優先獲取組件的name字段,否則是組件的tag */
        const name: ?string = getComponentName(componentOptions)
        /* name不在inlcude中或者在exlude中則直接返回vnode(沒有取緩存) */
        if (name && (
        (this.include && !matches(this.include, name)) ||
        (this.exclude && matches(this.exclude, name))
        )) {
            return vnode
        }
        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
        /* 如果已經做過緩存了則直接從緩存中獲取組件實例給vnode,還未緩存過則進行緩存 */
        if (this.cache[key]) {
            vnode.componentInstance = this.cache[key].componentInstance
        } else {
            this.cache[key] = vnode
        }
        /* keepAlive標記位 */
        vnode.data.keepAlive = true
    }
    return vnode
}

首先通過getFirstComponentChild獲取第一個子組件,獲取該組件的name(存在組件名則直接使用組件名,否則會使用tag)。接下來會將這個name通過include與exclude屬性進行匹配,匹配不成功(說明不需要進行緩存)則不進行任何操作直接返回vnode。

/* 檢測name是否匹配 */
function matches (pattern: string | RegExp, name: string): boolean {
  if (typeof pattern === 'string') {
    /* 字符串情況,如a,b,c */
    return pattern.split(',').indexOf(name) > -1
  } else if (isRegExp(pattern)) {
    /* 正則 */
    return pattern.test(name)
  }
  /* istanbul ignore next */
  return false
}

檢測include與exclude屬性匹配的函數很簡單,include與exclude屬性支持字符串如"a,b,c"這樣組件名以逗號隔開的情況以及正則表達式。matches通過這兩種方式分別檢測是否匹配當前組件。

if (this.cache[key]) {
    vnode.componentInstance = this.cache[key].componentInstance
} else {
    this.cache[key] = vnode
}

接下來的事情很簡單,根據key在this.cache中查找,如果存在則說明之前已經緩存過了,直接將緩存的vnode的componentInstance(組件實例)覆蓋到目前的vnode上面。否則將vnode存儲在cache中。
最后返回vnode(有緩存時該vnode的componentInstance已經被替換成緩存中的了)。
用watch來監聽pruneCache與pruneCache這兩個屬性的改變,在改變的時候修改cache緩存中的緩存數據。

watch: {
    /* 監視include以及exclude,在被修改的時候對cache進行修正 */
    include (val: string | RegExp) {
        pruneCache(this.cache, this._vnode, name => matches(val, name))
    },
    exclude (val: string | RegExp) {
        pruneCache(this.cache, this._vnode, name => !matches(val, name))
    }
},

來看一下pruneCache的實現。

/* 修正cache */
function pruneCache (cache: VNodeCache, current: VNode, filter: Function) {
  for (const key in cache) {
    /* 取出cache中的vnode */
    const cachedNode: ?VNode = cache[key]
    if (cachedNode) {
      const name: ?string = getComponentName(cachedNode.componentOptions)
      /* name不符合filter條件的,同時不是目前渲染的vnode時,銷毀vnode對應的組件實例(Vue實例),并從cache中移除 */
      if (name && !filter(name)) {
        if (cachedNode !== current) {
          pruneCacheEntry(cachedNode)
        }
        cache[key] = null
      }
    }
  }
} 

/* 銷毀vnode對應的組件實例(Vue實例) */
function pruneCacheEntry (vnode: ?VNode) {
  if (vnode) {
    vnode.componentInstance.$destroy()
  }
}

遍歷cache中的所有項,如果不符合filter指定的規則的話,則會執行pruneCacheEntry。pruneCacheEntry則會調用組件實例的$destroy方法來將組件銷毀。

感謝各位的閱讀!看完上述內容,你們對vue keep-alive組件如何使用大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

堆龙德庆县| 巴楚县| 新河县| 沿河| 日土县| 章丘市| 长宁区| 石棉县| 孙吴县| 团风县| 华亭县| 凌源市| 丹阳市| 江阴市| 黄浦区| 高青县| 天长市| 饶河县| 大田县| 济南市| 高邮市| 定州市| 灵川县| 竹山县| 友谊县| 阳曲县| 永寿县| 巫溪县| 来安县| 岐山县| 博野县| 股票| 桃江县| 抚顺县| 民勤县| 阿巴嘎旗| 大庆市| 肥城市| 陕西省| 大城县| 鱼台县|