溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue keep-alive組件如何使用

發(fā)布時(shí)間:2020-10-19 17:09:52 來(lái)源:億速云 閱讀:184 作者:小新 欄目:web開(kāi)發(fā)

vue keep-alive組件如何使用?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!

keep-alive

keep-alive是vue.js的內(nèi)置組件,它能夠把不活動(dòng)的組件的實(shí)例保存在內(nèi)存中,而不是直接的銷(xiāo)毀,它是一個(gè)抽象組件,不會(huì)被渲染到真實(shí)DOM中,也不會(huì)出現(xiàn)在父組件鏈中。
它提供了exclude和include兩個(gè)屬性,允許組件有條件的緩存。

使用

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

上面的comment組件會(huì)被緩存起來(lái)。

<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;
        }
    }
}

點(diǎn)擊button的時(shí)候coma組件和comb組件會(huì)發(fā)生切換,但這時(shí)候兩個(gè)組件的狀態(tài)會(huì)被緩存起來(lái),假如說(shuō)a和b組件中都有一個(gè)input標(biāo)簽,這時(shí)切換input標(biāo)簽的值不會(huì)改變。

props

keep-alive組件提供了include和exclude兩個(gè)屬性來(lái)進(jìn)行有條件的緩存,二者都可以用逗號(hào)分隔字符串、正則表達(dá)式或則數(shù)組表示。

<keep-alive include="a">
    <component></component>
</keep-alive>
//name名為a的組件會(huì)被緩存起來(lái)

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

生命鉤子

keep-alive提供了兩個(gè)生命鉤子,actived與deactived。
因?yàn)閗eep-alive會(huì)把組件保存到內(nèi)存中,并不會(huì)銷(xiāo)毀或則重新構(gòu)建,所以不會(huì)調(diào)用組件的creted等方法,需要使用actived和deactived兩個(gè)鉤子判斷組件是否處于活動(dòng)狀態(tài)。

深入keep-alive組件的實(shí)現(xiàn)

created和destroyed鉤子
created鉤子會(huì)創(chuàng)建一個(gè)cache對(duì)象,用來(lái)作為緩存容器,保存Vnode節(jié)點(diǎn)。

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

destroyed鉤子則在組件銷(xiāo)毀的時(shí)候清除cache緩存中的所有組件實(shí)例。

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

接下來(lái)是render函數(shù)。

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

    const componentOptions: ?VNodeComponentOptions = vnode && vnode.componentOptions
    if (componentOptions) {
        // check pattern
        /* 獲取組件名稱(chēng),優(yōu)先獲取組件的name字段,否則是組件的tag */
        const name: ?string = getComponentName(componentOptions)
        /* name不在inlcude中或者在exlude中則直接返回vnode(沒(méi)有取緩存) */
        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
        /* 如果已經(jīng)做過(guò)緩存了則直接從緩存中獲取組件實(shí)例給vnode,還未緩存過(guò)則進(jìn)行緩存 */
        if (this.cache[key]) {
            vnode.componentInstance = this.cache[key].componentInstance
        } else {
            this.cache[key] = vnode
        }
        /* keepAlive標(biāo)記位 */
        vnode.data.keepAlive = true
    }
    return vnode
}

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

/* 檢測(cè)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
}

檢測(cè)include與exclude屬性匹配的函數(shù)很簡(jiǎn)單,include與exclude屬性支持字符串如"a,b,c"這樣組件名以逗號(hào)隔開(kāi)的情況以及正則表達(dá)式。matches通過(guò)這兩種方式分別檢測(cè)是否匹配當(dāng)前組件。

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

接下來(lái)的事情很簡(jiǎn)單,根據(jù)key在this.cache中查找,如果存在則說(shuō)明之前已經(jīng)緩存過(guò)了,直接將緩存的vnode的componentInstance(組件實(shí)例)覆蓋到目前的vnode上面。否則將vnode存儲(chǔ)在cache中。
最后返回vnode(有緩存時(shí)該vnode的componentInstance已經(jīng)被替換成緩存中的了)。
用watch來(lái)監(jiān)聽(tīng)pruneCache與pruneCache這兩個(gè)屬性的改變,在改變的時(shí)候修改cache緩存中的緩存數(shù)據(jù)。

watch: {
    /* 監(jiān)視include以及exclude,在被修改的時(shí)候?qū)ache進(jìn)行修正 */
    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))
    }
},

來(lái)看一下pruneCache的實(shí)現(xiàn)。

/* 修正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條件的,同時(shí)不是目前渲染的vnode時(shí),銷(xiāo)毀vnode對(duì)應(yīng)的組件實(shí)例(Vue實(shí)例),并從cache中移除 */
      if (name && !filter(name)) {
        if (cachedNode !== current) {
          pruneCacheEntry(cachedNode)
        }
        cache[key] = null
      }
    }
  }
} 

/* 銷(xiāo)毀vnode對(duì)應(yīng)的組件實(shí)例(Vue實(shí)例) */
function pruneCacheEntry (vnode: ?VNode) {
  if (vnode) {
    vnode.componentInstance.$destroy()
  }
}

遍歷cache中的所有項(xiàng),如果不符合filter指定的規(guī)則的話,則會(huì)執(zhí)行pruneCacheEntry。pruneCacheEntry則會(huì)調(diào)用組件實(shí)例的$destroy方法來(lái)將組件銷(xiāo)毀。

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

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI