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

Vue初始化中的选项合并之initInternalComponent详解

程序员文章站 2022-11-22 16:18:04
今天给大家分享vue初始化中的选项合并之initinternalcomponent的相关知识,具体代码如下所示:export function initinternalcomponent (vm: c...

今天给大家分享vue初始化中的选项合并之initinternalcomponent的相关知识,具体代码如下所示:

export function initinternalcomponent (vm: component, options: internalcomponentoptions) {
 const opts = vm.$options = object.create(vm.constructor.options)
 // doing this because it's faster than dynamic enumeration.
 const parentvnode = options._parentvnode
 opts.parent = options.parent
 opts._parentvnode = parentvnode

 const vnodecomponentoptions = parentvnode.componentoptions
 opts.propsdata = vnodecomponentoptions.propsdata
 opts._parentlisteners = vnodecomponentoptions.listeners
 opts._renderchildren = vnodecomponentoptions.children
 opts._componenttag = vnodecomponentoptions.tag

 if (options.render) {
  opts.render = options.render
  opts.staticrenderfns = options.staticrenderfns
 }
}

initinternalcomponent方法接受两个参数,第一个参数是组件实例,即this。第二个参数是组件构造函数中传入的option,这个option根据上文的分析,他是在createcomponentinstanceforvnode方法中定义的:

export function createcomponentinstanceforvnode (
 vnode: any, // we know it's mountedcomponentvnode but flow doesn't
 parent: any, // activeinstance in lifecycle state
): component {
 const options: internalcomponentoptions = {
  _iscomponent: true,
  _parentvnode: vnode,
  parent
 }
 // check inline-template render functions
 const inlinetemplate = vnode.data.inlinetemplate
 if (isdef(inlinetemplate)) {
  options.render = inlinetemplate.render
  options.staticrenderfns = inlinetemplate.staticrenderfns
 }
 return new vnode.componentoptions.ctor(options)
}

option中有三个属性值,_iscomponent上面已经提到过了;_parentvode其实就是该组件实例的vnode对象(createcomponentinstanceforvnode就是根据这个vnode对象去创建一个组件实例);parent则是该组件的父组件实例对象。
然后我们来看看具体initinternalcomponent做了什么操作:

const opts = vm.$options = object.create(vm.constructor.options)

首先,用object.create这个函数,把组件构造函数的options挂载到vm.$options__proto__上。

const parentvnode = options._parentvnode
opts.parent = options.parent
opts._parentvnode = parentvnode

接下把传入参数的option的_parentvodeparent挂载到组件实例$options上。用我们在两种策略里的那个例子来说,parent就是我们组件的根实例,而_parentvnode就是<comp :msg="msg" @log-msg="logmsg"></comp>生成的一个vnode对象。

const vnodecomponentoptions = parentvnode.componentoptions
opts.propsdata = vnodecomponentoptions.propsdata
opts._parentlisteners = vnodecomponentoptions.listeners
opts._renderchildren = vnodecomponentoptions.children
opts._componenttag = vnodecomponentoptions.tag

然后把父组件里的vnode上的四个属性挂载到我们的$options上,还是用那个例子来说,propsdata就是根据:msg="msg"生成的,他的值就是在根组件里定义的那个msg{msg: "props-message"}。而_parentlisteners就是根据@log-msg="logmsg"生成的,他的值是logmsg这个定义在父组件中的方法。

if (options.render) {
  opts.render = options.render
  opts.staticrenderfns = options.staticrenderfns
}

最后就是如果传入的option中如果有render,把render相关的也挂载到$options上。
因此,这个initinternalcomponent主要做了两件事情:1.指定组件$options原型,2.把组件依赖于父组件的props、listeners也挂载到options上,方便子组件调用。

总结

到此这篇关于vue初始化中的选项合并之initinternalcomponent详解的文章就介绍到这了,更多相关vue初始化选项合并内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!