vue 初次渲染

Posted 前端精髓

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 初次渲染相关的知识,希望对你有一定的参考价值。

export function mountComponent (
  vm: Component,
  el: ?Element,
  hydrating?: boolean
): Component 
  vm.$el = el
  if (!vm.$options.render) 
    vm.$options.render = createEmptyVNode
    if (process.env.NODE_ENV !== 'production') 
      /* istanbul ignore if */
      if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||
        vm.$options.el || el) 
        warn(
          'You are using the runtime-only build of Vue where the template ' +
          'compiler is not available. Either pre-compile the templates into ' +
          'render functions, or use the compiler-included build.',
          vm
        )
       else 
        warn(
          'Failed to mount component: template or render function not defined.',
          vm
        )
      
    
  
  callHook(vm, 'beforeMount')

  let updateComponent
  /* istanbul ignore if */
  if (process.env.NODE_ENV !== 'production' && config.performance && mark) 
    updateComponent = () => 
      const name = vm._name
      const id = vm._uid
      const startTag = `vue-perf-start:$id`
      const endTag = `vue-perf-end:$id`

      mark(startTag)
      const vnode = vm._render()
      mark(endTag)
      measure(`vue $name render`, startTag, endTag)

      mark(startTag)
      vm._update(vnode, hydrating)
      mark(endTag)
      measure(`vue $name patch`, startTag, endTag)
    
   else 
    updateComponent = () => 
      vm._update(vm._render(), hydrating)
    
  

  // we set this to vm._watcher inside the watcher's constructor
  // since the watcher's initial patch may call $forceUpdate (e.g. inside child
  // component's mounted hook), which relies on vm._watcher being already defined
  new Watcher(vm, updateComponent, noop, 
    before () 
      if (vm._isMounted) 
        callHook(vm, 'beforeUpdate')
      
    
  , true /* isRenderWatcher */)
  hydrating = false

  // manually mounted instance, call mounted on self
  // mounted is called for render-created child components in its inserted hook
  if (vm.$vnode == null) 
    vm._isMounted = true
    callHook(vm, 'mounted')
  
  return vm

每个组件实例都对应一个 watcher 实例,它会在组件渲染的过程中把“接触”过的数据 property 记录为依赖。之后当依赖项的 setter 触发时,会通知 watcher,从而使它关联的组件重新渲染。

从上面的代码可以看到,mountComponent 核心就是先实例化一个渲染Watcher,在它的回调函数中会调用 updateComponent 方法,在此方法中调用 vm._render 方法先生成虚拟 Node,最终调用 vm._update 更新 DOM。

Watcher 在这里起到两个作用,一个是初始化的时候会执行回调函数,另一个是当 vm 实例中的监测的数据发生变化的时候执行回调函数,这块儿我们会在之后的章节中介绍。

vm._render 最终是通过执行 createElement 方法并返回的是 vnode,它是一个虚拟 Node。

而 Virtual DOM 就是用一个原生的 JS 对象去描述一个 DOM 节点,所以它比创建一个 DOM 的代价要小很多。在 Vue.js 中,Virtual DOM 是用 VNode 这么一个 Class 去描述,它是定义在 src/core/vdom/vnode.js 中的。

Virtual DOM 除了它的数据结构的定义,映射到真实的 DOM 实际上要经历 VNode 的 create、diff、patch 等过程。那么在 Vue.js 中,VNode 的 create 是通过之前提到的 createElement 方法创建的,我们接下来分析这部分的实现。

以上是关于vue 初次渲染的主要内容,如果未能解决你的问题,请参考以下文章

vue 初次渲染

Vue原理-组件渲染/更新过程

django和vue初次接触

Vue:初次使用vueX

离屏渲染

vue3