欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Vue3中对VDOM的改进

程序员文章站 2022-05-25 22:08:45
前言vue-next 对virtual dom的patch更新做了一系列的优化,从编译时加入了 block 以减少 vdom 之间的对比次数,另外还有 hoisted 的操作减少了内存的开销。本文写给...

前言

vue-next 对virtual dom的patch更新做了一系列的优化,从编译时加入了 block 以减少 vdom 之间的对比次数,另外还有 hoisted 的操作减少了内存的开销。本文写给自己看,做个知识点记录,如有错误,还请不吝赐教。

vdom

vdom的概念简单来说就是用js对象来模拟真实dom树。由于mv**的架构,真实dom树应该随着数据(vue2.x中的data)的改变而发生改变,这些改变可能是以下几个方面:

  • v-if
  • v-for
  • 动态的props(如:class,@click)
  • 子节点的改变
  • 等等

vue框架要做的其实很单一:在用户改变数据时,正确更新dom树,做法就是其核心的vdom的patch和diff算法。

vue2.x中的做法

在vue2.x中,当数据改变后就要对所有的节点进行patch和diff操作。如以下dom结构:

<div>
 <span class="header">i'm header</span>
 <ul>
  <li>第一个静态li</li>
  <li v-for="item in mutableitems" :key="item.key"> {{ item.desc }}</li>
 </ul>
</div>

在第一次mount节点的时候会去生成真实的dom,此后如果

mutableitems.push({
 key: 'asdf',
 desc: 'a new li item'
})

预期的结果是页面出现新的一个li元素,内容就是 a new li item,vue2.x中是通过patch时对 ul 元素对应的 vnode 的 children 来进行 diff 操作,具体操作在此不深究,但是该操作是需要比较所有的 li 对应的 vnode 的。

不足

正是由于2.x版本中的diff操作需要遍历所有元素,本例中包括了 span 和 第一个li元素,但是这两个元素是静态的,不需要被比较的,不论数据怎么变,静态元素都不会再更改了。vue-next在编译时对这种操作做了优化,即 block。

block

入上述模板,在vue-next中生成的渲染函数为:

const _vue = vue
const { createvnode: _createvnode } = _vue

const _hoisted_1 = _createvnode("span", { class: "header" }, "i'm header", -1 /* hoisted */)
const _hoisted_2 = _createvnode("li", null, "第一个静态li", -1 /* hoisted */)

return function render(_ctx, _cache) {
 with (_ctx) {
  const { createvnode: _createvnode, renderlist: _renderlist, fragment: _fragment, openblock: _openblock, createblock: _createblock, todisplaystring: _todisplaystring } = _vue

  return (_openblock(), _createblock(_fragment, null, [
   _hoisted_1,
   _createvnode("ul", null, [
    _hoisted_2,
    (_openblock(true), _createblock(_fragment, null, _renderlist(state.mutableitems, (item) => {
     return (_openblock(), _createblock("li", { key: item.key }, _todisplaystring(item.desc), 1 /* text */))
    }), 128 /* keyed_fragment */))
   ])
  ], 64 /* stable_fragment */))
 }
}

我们可以看到调用了 openblock 和 createblock 方法,这两个方法的代码实现也很简单:

const blockstack: (vnode[] | null)[] = []
let currentblock: vnode[] | null = null
let shouldtrack = 1
// openblock
export function openblock(disabletracking = false) {
 blockstack.push((currentblock = disabletracking ? null : []))
}
export function createblock(
 type: vnodetypes | classcomponent,
 props?: { [key: string]: any } | null,
 children?: any,
 patchflag?: number,
 dynamicprops?: string[]
): vnode {
 // avoid a block with patchflag tracking itself
 shouldtrack--
 const vnode = createvnode(type, props, children, patchflag, dynamicprops)
 shouldtrack++
 // save current block children on the block vnode
 vnode.dynamicchildren = currentblock || empty_arr
 // close block
 blockstack.pop()
 currentblock = blockstack[blockstack.length - 1] || null
 // a block is always going to be patched, so track it as a child of its
 // parent block
 if (currentblock) {
  currentblock.push(vnode)
 }
 return vnode
}

更加详细的注释还请看源代码中的注释,写的十分详尽,便于理解。这里面 openblock 就是初始化一个块,createblock 就是对当前编译的内容生成一个块,这里面的这一行代码:vnode.dynamicchildren = currentblock || empty_arr 就是在收集动态的子节点,我们可以再看一下编译时运行的函数:

// createvnode
function _createvnode(
 type: vnodetypes | classcomponent,
 props: (data & vnodeprops) | null = null,
 children: unknown = null,
 patchflag: number = 0,
 dynamicprops: string[] | null = null
) {
 /**
  * 一系列代码
 **/

 // presence of a patch flag indicates this node needs patching on updates.
 // component nodes also should always be patched, because even if the
 // component doesn't need to update, it needs to persist the instance on to
 // the next vnode so that it can be properly unmounted later.
 if (
  shouldtrack > 0 &&
  currentblock &&
  // the events flag is only for hydration and if it is the only flag, the
  // vnode should not be considered dynamic due to handler caching.
  patchflag !== patchflags.hydrate_events &&
  (patchflag > 0 ||
   shapeflag & shapeflags.suspense ||
   shapeflag & shapeflags.stateful_component ||
   shapeflag & shapeflags.functional_component)
 ) {
  currentblock.push(vnode)
 }
}

上述函数是在模板编译成ast之后调用的生成vnode的函数,所以有patchflag这个标志,如果是动态的节点,并且此时是开启了block的话,就会将节点塞入block中,这样 createblock返回的 vnode 中就会有 dynamicchildren 了。

到此为止,通过本文中案例经过模板编译和render函数运行后并经过了优化以后生成了如下结构的vnode:

const result = {
 type: symbol(fragment),
 patchflag: 64,
 children: [
  { type: 'span', patchflag: -1, ...},
  {
   type: 'ul',
   patchflag: 0,
   children: [
    { type: 'li', patchflag: -1, ...},
    {
     type: symbol(fragment),
     children: [
      { type: 'li', patchflag: 1 ...},
      { type: 'li', patchflag: 1 ...}
     ]
    }
   ]
  }
 ],
 dynamicchildren: [
  {
   type: symbol(fragment),
   patchflag: 128,
   children: [
    { type: 'li', patchflag: 1 ...},
    { type: 'li', patchflag: 1 ...}
   ]
  }
 ]
}

以上的 result 不完整,但是我们暂时只关心这些属性。可以看见 result.children 的第一个元素是span,patchflag=-1,且 result 有一个 dynamicchildren 数组,里面只包含了两个动态的 li,后续如果变动了数据,那么新的 vnode.dynamicchildren 会有第三个 li 元素。

patch

patch部分其实也没差多少,就是根据vnode的type执行不同的patch操作:

function patchelement(n1, n2) {
 let { dynamicchildren } = n2
 // 一系列操作

 if (dynamicchildren) {
  patchblockchildren (
   n1.dynamicchildren!,
   dynamicchildren,
   el,
   parentcomponent,
   parentsuspense,
   arechildrensvg
  )
 } else if (!optimized) {
  // full diff
  patchchildren(
   n1,
   n2,
   el,
   null,
   parentcomponent,
   parentsuspense,
   arechildrensvg
  )
 }
}

可以看见,如果有了 dynamicchildren 那么vue2.x版本中的diff操作就被替换成了 patchblockchildren() 且参数只有 dynamicchildren,就是静态的不做diff操作了,而如果vue-next的patch中没有 dynamicchildren,则进行完整的diff操作,入注释写的 full diff 的后续代码。

结尾

本文没有深入讲解代码的实现层面,一是因为自己实力不济还在阅读源码当中,二是我个人认为阅读源码不可钻牛角尖,从大局入眼,再徐徐图之,先明白了各个部分的作用后带着思考去阅读源码能收获到的应该更多一些。

到此这篇关于详解vue3中对vdom的改进的文章就介绍到这了,更多相关vue3 vdom内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!