浅谈Vue页面级缓存解决方案feb-alive(上)

2022-10-20,,,,

feb-alive

使用理由

  • 开发者无需因为动态路由或者普通路由的差异而将数据初始化逻辑写在不同的钩子里beforerouteupdate或者activated
  • 开发者无需手动缓存页面状态,例如通过localstorage或者sessionstorage缓存当前页面的数据
  • feb-alive会帮你处理路由meta信息的存储与恢复

为什么开发feb-laive?

当我们通过vue开发项目时候,是否会有以下场景需求?

  • /a跳转到/b
  • 后退到/a时候,希望从缓存中恢复页面
  • 再次跳转到/b时,分两种情况
    • 情况一: 通过链接或者push跳转,则希望重新创建/b页面,而不是从缓存中读取
    • 情况二: 如果点击浏览器自带前进按钮,则还是从缓存中读取页面。

这个场景需求着重强调了缓存,缓存带来的好处是,我上次页面的数据及状态都被保留,无需在从服务器拉取数据,使用户体验大大提高。

尝试用keep-alive实现页面缓存

<keep-alive>
 <router-view></router-view>
</keep-alive>

so easy但是理想很完美,现实很残酷

存在问题

-/a跳到/b,再跳转到/a 的时候,页面中的数据是第一次访问的/a页面,明明是链接跳转,确出现了缓存的效果,而我们期望的是像app一样开启一个新的页面。

  • 同理动态路由跳转/page/1->/page/2因为两个页面引用的是同一个组件,所以跳转时页面就不会有任何改变,因为keep-alive的缓存的key是根据组件来生成的(当然vue提供了beforerouteupdate钩子供我们刷新数据)
  • 总结:keep-alive的缓存是==组件级别==的,而不是==页面级别==的。

举个应用场景

例如浏览文章页面,依次访问3篇文章

  • /artical/1
  • /artical/2
  • /artical/3

当我从/artical/3后退到/artical/2时候,由于组件缓存,此时页面还是文章3的内容,所以必须通过beforerouteupdate来重新拉取页面2的数据。(注意此处后退不会触发组件的activated钩子,因为两个路由都渲染同个组件,所以实例会被复用,不会执行reactivatecomponent)

如果你想从/artical/3后退到/artical/2时,同时想恢复之前在/artical/2中的一些状态,那么你还需要自己针对/artical/2中的所有状态数据进行存储和恢复。

综上:keep-alive实现的组件级别的缓存和我们想象中的缓存还是有差距的,keep-alive并不能满足我们的需求。

==针对这些问题,所以feb-alive插件诞生了==

由于feb-alive是基于keep-alive实现的,所以我们先简单分析一下keep-alive是如何实现缓存的

export default {
 name: 'keep-alive',
 abstract: true,

 props: {
 include: patterntypes,
 exclude: patterntypes,
 max: [string, number]
 },

 created () {
 this.cache = object.create(null)
 this.keys = []
 },

 destroyed () {
 for (const key in this.cache) {
  prunecacheentry(this.cache, key, this.keys)
 }
 },

 mounted () {
 this.$watch('include', val => {
  prunecache(this, name => matches(val, name))
 })
 this.$watch('exclude', val => {
  prunecache(this, name => !matches(val, name))
 })
 },

 render () {
 // 获取默认插槽
 const slot = this.$slots.default
 // 获取第一个组件,也就和官方说明的一样,keep-alive要求同时只有一个子元素被渲染,如果你在其中有 v-for 则不会工作。
 const vnode: vnode = getfirstcomponentchild(slot)
 // 判断是否存在组件选项,也就是说只对组件有效,对于普通的元素则直接返回对应的vnode
 const componentoptions: ?vnodecomponentoptions = vnode && vnode.componentoptions
 if (componentoptions) {
  // 检测include和exclude
  const name: ?string = getcomponentname(componentoptions)
  const { include, exclude } = this
  if (
  // not included
  (include && (!name || !matches(include, name))) ||
  // excluded
  (exclude && name && matches(exclude, name))
  ) {
  return vnode
  }

  const { cache, keys } = this
  // 如果指定了子组件的key则使用,否则通过cid+tag生成一个key
  const key: ?string = vnode.key == null
  ? componentoptions.ctor.cid + (componentoptions.tag ? `::${componentoptions.tag}` : '')
  : vnode.key
  // 判断是否存在缓存
  if (cache[key]) {
  // 直接复用组件实例,并更新key的位置
  vnode.componentinstance = cache[key].componentinstance
  remove(keys, key)
  keys.push(key)
  } else {
  // 此处存储的vnode还没有实例,在之后的流程中通过在createcomponent中会生成实例
  cache[key] = vnode
  keys.push(key)
  // 当缓存数量大于阈值时,删除最早的key
  if (this.max && keys.length > parseint(this.max)) {
   prunecacheentry(cache, keys[0], keys, this._vnode)
  }
  }
  // 设置keepalive属性,createcomponent中会判断是否已经生成组件实例,如果是且keepalive为true则会触发actived钩子。
  vnode.data.keepalive = true
 }
 return vnode || (slot && slot[0])
 }
}

keep-alive是一个抽象组件,组件实例中维护了一份cache,也就是以下代码部分

created () {
 // 存储组件缓存
 this.cache = object.create(null)
 this.keys = []
}

由于路由切换并不会销毁keep-alive组件,所以缓存是一直存在的(嵌套路由中,子路由外层的keep-alive情况会不一样,后续会提到)

继续看下keep-alive在缓存的存储和读取的具体实现,先用一个简单的demo来描述keep-alive对于组件的缓存以及恢复缓存的过程

let foo = {
 template: '<div class="foo">foo component</div>',
 name: 'foo'
}
let bar = {
 template: '<div class="bar">bar component</div>',
 name: 'bar'
}
let gvm = new vue({
 el: '#app',
 template: `
  <div id="#app">
   <keep-alive>
    <component :is="rendercom"></component>
   </keep-alive>
   <button @click="change">切换组件</button>
  </div>
 `,
 components: {
  foo,
  bar
 },
 data: {
  rendercom: 'foo'
 },
 methods: {
  change () {
   this.rendercom = this.rendercom === 'foo' ? 'bar': 'foo'
  }
 }
})

上面例子中,根实例的template会被编译成如下render函数

function anonymous(
) {
 with(this){return _c('div',{attrs:{"id":"#app"}},[_c('keep-alive',[_c(rendercom,{tag:"component"})],1),_c('button',{on:{"click":change}})],1)}
}

可使用在线编译:

根据上面的render函数可以知道,vnode生成的过程是深度递归的,先创建子元素的vnode再创建父元素的vnode。
所以首次渲染的时候,在生成keep-alive组件vnode的时候,foo组件的vnode已经生成好了,并且作为keep-alive组件vnode构造函数(_c)的参数传入。

_c('keep-alive',[_c(rendercom,{tag:"component"})

生成的keep-alive组件的vnode如下

{
 tag: 'vue-component-2-keep-alive',
 ...
 children: undefined,
 componentinstance: undefined,
 componentoptions: {
  ctor: f vuecomponent(options),
  children: [vnode],
  listeners: undefined,
  propsdata: {},
  tag: 'keep-alive'
 },
 context: vue {...}, // 调用 $createelement/_c的组件实例, 此处是根组件实例对象
 data: {
  hook: {
   init: f,
   prepatch: f,
   insert: f,
   destroy: f
  } 
 }
}

此处需要注意组件的vnode是没有children的,而是将原本的children作为vnode的componentoptions的children属性,componentoptions在组件实例化的时候会被用到,同时在初始化的时候componentoptions.children最终会赋值给vm.$slots,源码部分如下

// createcomponent函数
function createcomponent (ctor, data, context, children, tag) {
 // 此处省略部分代码
 ...
 var vnode = new vnode(
  ("vue-component-" + (ctor.cid) + (name ? ("-" + name) : '')),
  data, undefined, undefined, undefined, context,
  { ctor: ctor, propsdata: propsdata, listeners: listeners, tag: tag, children: children },
  asyncfactory
 );
 return vnode
}

vue最后都会通过patch函数进行渲染,将vnode转换成真实的dom,对于组件则会通过createcomponent进行渲染

function createcomponent (vnode, insertedvnodequeue, parentelm, refelm) {
 var i = vnode.data;
 if (isdef(i)) {
  var isreactivated = isdef(vnode.componentinstance) && i.keepalive;
  if (isdef(i = i.hook) && isdef(i = i.init)) {
  i(vnode, false /* hydrating */);
  }
  // after calling the init hook, if the vnode is a child component
  // it should've created a child instance and mounted it. the child
  // component also has set the placeholder vnode's elm.
  // in that case we can just return the element and be done.
  if (isdef(vnode.componentinstance)) {
  initcomponent(vnode, insertedvnodequeue);
  insert(parentelm, vnode.elm, refelm);
  if (istrue(isreactivated)) {
   reactivatecomponent(vnode, insertedvnodequeue, parentelm, refelm);
  }
  return true
  }
 }
 }

接下去分两步介绍

  1. keep-alive组件本身的渲染
  2. keep-alive包裹组件的渲染,本例中的foo组件和bar组件

先讲讲本例中针对keep-alive组件本身的渲染

  1. 根组件实例化
  2. 根组件$mount
  3. 根组件调用mountcomponent
  4. 根组件生成renderwatcher
  5. 根组件调用updatecomponent
  6. 根组件调用vm.render()生成根组件vnode
  7. 根组件调用vm.update(vnode)
  8. 根组件调用vm.patch(oldvnode, vnode)
  9. 根组件调用createelm(vnode)
  10. 在children渲染的时候,如果遇到组件类型的vnode则调用createcomponent(vnode),而正是在这个过程中,进行了子组件的实例化及挂载($mount)

所以在执行createelm(keepalivevnode)的过程中会对keep-alive组件的实例化及挂载,而在实例化的过程中,keep-alive包裹的子组件的vnode会赋值给keep-alive组件实例的$slot属性,所以在keep-alive实例调用render函数时,可以通过this.$slot拿到包裹组件的vnode,在demo中,就是foo组件的vnode,具体分析下keep-alive组件的render函数

render () {
 const slot = this.$slots.default
 const vnode: vnode = getfirstcomponentchild(slot)
 const componentoptions: ?vnodecomponentoptions = vnode && vnode.componentoptions
 if (componentoptions) {
  const name: ?string = getcomponentname(componentoptions)
  const { include, exclude } = this
  if (
  // 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
  ? componentoptions.ctor.cid + (componentoptions.tag ? `::${componentoptions.tag}` : '')
  : vnode.key
  if (cache[key]) {
  vnode.componentinstance = cache[key].componentinstance
  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.data.keepalive = true
 }
 return vnode || (slot && slot[0])
 }

上面分析到,在执行createelm(keepalivevnode)的过程中,会执行keep-alive组件的实例化及挂载($mount),而在挂载的过程中,会执行keep-alive的render函数,之前分析过,在render函数中,可以通过this.$slot获取到子组件的vnode,从上面源码中,可以知道,keep-alive只处理默认插槽的第一个子组件,言外之意如果在keep-alive中包裹多个组件的话,剩下的组件会被忽略,例如:

<keep-alive>
 <foo />
 <bar />
</keep-alive>
// 只会渲染foo组件

继续分析,在拿到foo组件vnode后,判断了componentoptions,由于我们的foo是一个组件,所以这里componentoptions是存在的,进到if逻辑中,此处include 表示只有匹配的组件会被缓存,而 exclude 表示任何匹配的组件都不会被缓存,demo中并没有设置相关规则,此处先忽略。

const { cache, keys } = this
cache, keys是在keep-alive组件的create钩子中生成的,用来存储被keep-alive缓存的组件的实例以及对应vnode的key
created () {
 this.cache = object.create(null)
 this.keys = []
}

继续下面

const key: ?string = vnode.key == null
  ? componentoptions.ctor.cid + (componentoptions.tag ? `::${componentoptions.tag}` : '')
  : vnode.key
if (cache[key]) {
 vnode.componentinstance = cache[key].componentinstance
 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的key,如果vnode.key存在则使用vnode.key,不存在则用componentoptions.ctor.cid + (componentoptions.tag ?::${componentoptions.tag}: '')作为存储组件实例的key,据此可以知道,如果我们不指定组件的key的话,对于相同的组件会匹配到同一个缓存,这也是为什么最开始在描述keep-alive的时候强调它是一个组件级的缓存方案。

那么首次渲染的时候,cache和keys都是空的,这里就会走else逻辑

cache[key] = vnode
keys.push(key)
if (this.max && keys.length > parseint(this.max)) {
 prunecacheentry(cache, keys[0], keys, this._vnode)
}

以key作为cache的健进行存储foo组件vnode(注意此时vnode上面还没有componentinstance),这里利用了对象存储的原理,之后进行foo组件实例化的时候会将其实例赋值给vnode.componentinstance,那么在下次keep-alive组件render的时候就可以获取到vnode.componentinstance。

所以首次渲染仅仅是在keep-alive的cache上面,存储了包裹组件foo的vnode。

针对包裹组件的渲染

上面已经讲到执行了keep-alive的render函数,根据上面的源码可以知道,render函数返回了foo组件的vnode,那么在keep-alive执行patch的时候,会创建foo组件的实例,然后再进行foo组件的挂载,这个过程与普通组件并没有区别,在此不累述。

当组件从foo切换到bar时

本例中由于rendercom属性的变化,会触发根组件的renderwatcher,之后会执行patch(oldvnode, vnode)
在进行child vnode比较的时候,keep-alive的新老vnode比较会被判定为samevnode,之后会进入到patchvnode的逻辑

function patchvnode (oldvnode, vnode, insertedvnodequeue, removeonly) {
 if (oldvnode === vnode) {
  return
 }
 // 此处省略代码
 ...
 var i;
 var data = vnode.data;
 if (isdef(data) && isdef(i = data.hook) && isdef(i = i.prepatch)) {
  i(oldvnode, vnode);
 }
 // 此处省略代码
 ...
}

由于我们的keep-alive是组件,所以在vnode创建的时候,会注入一些生命周期钩子,其中就包含prepatch钩子,其代码如下

prepatch: function prepatch (oldvnode, vnode) {
 var options = vnode.componentoptions;
 var child = vnode.componentinstance = oldvnode.componentinstance;
 updatechildcomponent(
  child,
  options.propsdata, // updated props
  options.listeners, // updated listeners
  vnode, // new parent vnode
  options.children // new children
 );
}

由此可知,keep-alive组件的实例在此次根组件重渲染的过程中会复用,这也保证了keep-alive组件实例上面之前存储cache还是存在的

var child = vnode.componentinstance = oldvnode.componentinstance;

下面的updatechildcomponent这个函数非常关键,这个函数担任了foo组件切换到bar组件的关键任务。我们知道,由于keep-alive组件是在此处是复用的,所以不会再触发initrender,所以vm.$slot不会再次更新。所以在updatechildcomponent函数担起了slot更新的重任

function updatechildcomponent (
 vm,
 propsdata,
 listeners,
 parentvnode,
 renderchildren
) {
 if (process.env.node_env !== 'production') {
 isupdatingchildcomponent = true;
 }

 // determine whether component has slot children
 // we need to do this before overwriting $options._renderchildren
 var haschildren = !!(
 renderchildren ||    // has new static slots
 vm.$options._renderchildren || // has old static slots
 parentvnode.data.scopedslots || // has new scoped slots
 vm.$scopedslots !== emptyobject // has old scoped slots
 );

 // ...

 // resolve slots + force update if has children
 if (haschildren) {
 vm.$slots = resolveslots(renderchildren, parentvnode.context);
 vm.$forceupdate();
 }

 if (process.env.node_env !== 'production') {
 isupdatingchildcomponent = false;
 }
}

updatechildcomponent函数主要更新了当前组件实例上的一些属性,这里包括props,listeners,slots。我们着重讲一下slots更新,这里通过resolveslots获取到最新的包裹组件的vnode,也就是demo中的bar组件,之后通过vm.$forceupdate强制keep-alive组件进行重新渲染。(小提示:当我们的组件有插槽的时候,该组件的父组件re-render时会触发该组件实例$fourceupdate,这里会有性能损耗,因为不管数据变动是否对slot有影响,都会触发强制更新,根据vueconf上尤大的介绍,此问题在3.0会被优化),例如

// home.vue
<template>
 <artical>
  <foo />
 </artical>
</tempalte>

此例中当home组件更新的时候,会触发artical组件的强制刷新,而这种刷新是多余的。

继续,在更新了keep-alive实例的forceupdate,之后再次进入到keep-alive的render函数中

render () {
 const slot = this.$slots.default
 const vnode: vnode = getfirstcomponentchild(slot)
 // ...
}

此时render函数中获取到vnode就是bar组件的vnode,接下去的流程和foo渲染一样,只不过也是把bar组件的vnode缓存到keep-alive实例的cache对象中。

当组件从bar再次切换到foo时

针对keep-alive组件逻辑还是和上面讲述的一样

  • 执行prepatch
  • 复用keep-alive组件实例
  • 执行updatechildcomponent,更新$slots
  • 触发vm.$forceupdate
  • 触发keep-alive组件render函数

再次进入到render函数,这时候cache[key]就会匹配到foo组件首次渲染时候缓存的vnode了,看下这部分逻辑

const key: ?string = vnode.key == null
  ? componentoptions.ctor.cid + (componentoptions.tag ? `::${componentoptions.tag}` : '')
  : vnode.key
if (cache[key]) {
 vnode.componentinstance = cache[key].componentinstance
 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)
 }
}

由于keep-alive包裹的组件是foo组件,根据规则,此时生成的key和第一此渲染foo组件时生成的key是一样的,所以本次keep-alive的render函数进入到了第一个if分支,也就是匹配到了cache[key],把缓存的componentinstance赋值给当前vnode,然后更新keys(当存在max的时候,能够保证被删除的是比较老的缓存)。

很多同学可能会问,这里设置vnode.componentinstance会有什么作用。这里涉及到vue的源码部分。

由于是从bar组件切换到foo组件,所以在patch的时候,比对到此处,并不会被判定为samevnode,所以自然而然走到createelm,由于foo是vue组件,所以会进入到createcomponent,所以最终进入到下面函数片段

function createcomponent (vnode, insertedvnodequeue, parentelm, refelm) {
 var i = vnode.data;
 if (isdef(i)) {
  var isreactivated = isdef(vnode.componentinstance) && i.keepalive;
  if (isdef(i = i.hook) && isdef(i = i.init)) {
  i(vnode, false /* hydrating */);
  }
  // after calling the init hook, if the vnode is a child component
  // it should've created a child instance and mounted it. the child
  // component also has set the placeholder vnode's elm.
  // in that case we can just return the element and be done.
  if (isdef(vnode.componentinstance)) {
  initcomponent(vnode, insertedvnodequeue);
  insert(parentelm, vnode.elm, refelm);
  if (istrue(isreactivated)) {
   reactivatecomponent(vnode, insertedvnodequeue, parentelm, refelm);
  }
  return true
  }
 }
 }

可以根据上面对于keep-alive源码的分析,此处isreactivated为true,接下去会进入到vnode生成的时候挂在的生命周期init函数

var componentvnodehooks = {
 init: function init (vnode, hydrating) {
 if (
  vnode.componentinstance &&
  !vnode.componentinstance._isdestroyed &&
  vnode.data.keepalive
 ) {
  // kept-alive components, treat as a patch
  var mountednode = vnode; // work around flow
  componentvnodehooks.prepatch(mountednode, mountednode);
 } else {
  var child = vnode.componentinstance = createcomponentinstanceforvnode(
  vnode,
  activeinstance
  );
  child.$mount(hydrating ? vnode.elm : undefined, hydrating);
 }
 },
 prepatch: function prepatch (oldvnode, vnode) {
 var options = vnode.componentoptions;
 var child = vnode.componentinstance = oldvnode.componentinstance;
 updatechildcomponent(
  child,
  options.propsdata, // updated props
  options.listeners, // updated listeners
  vnode, // new parent vnode
  options.children // new children
 );
 },
 ...
}

此时由于实例已经存在,且keepalive为true,所以会走第一个if逻辑,会执行prepatch,更新组件属性及一些监听器,如果存在插槽的话,还会更新插槽,并执行$forceupdate,此处在前面已经分析过,不做累述。

继续createcomponent,在函数内部会执行initcomponent和insert

if (isdef(vnode.componentinstance)) {
 // 将实例上的dom赋值给vnode
 initcomponent(vnode, insertedvnodequeue);
 // 插入dom
 insert(parentelm, vnode.elm, refelm);
if (istrue(isreactivated)) {
 reactivatecomponent(vnode, insertedvnodequeue, parentelm, refelm);
}
return true
}

至此,当组件从bar再次切换到foo时,实例与dom都得到了复用,达到一个很高的体验效果!而我们之后要实现的feb-alive就是基于keep-alive实现的。

vue页面级缓存解决方案feb-alive (下)

参考文档

vue-navigation
vue.js 技术揭秘

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

《浅谈Vue页面级缓存解决方案feb-alive(上).doc》

下载本文的Word格式文档,以方便收藏与打印。