Vue2.x源码学习:options合并过程mergeOptions函数

该文章详细阐述了Vue.js中组件初始化的过程,特别是_options的创建,如何合并父组件与子组件的选项,以及处理props、inject、directives的规范化。同时,解释了当存在基类时,如何递归解析构造函数的选项并进行合并。
摘要由CSDN通过智能技术生成

入口函数

export function initMixin(Vue: Class<Component>) {
  Vue.prototype._init = function (options?: Object) {
     //...省略代码
    //merge options
    if (options && options._isComponent) {
      initInternalComponent(vm, options)
    } else {
     //定义$options属性
     //vm.constructor 就是Vue函数
      vm.$options = mergeOptions(
        resolveConstructorOptions(vm.constructor),
        options || {},
        vm
      )
    }
    //...省略代码

    if (vm.$options.el) {
      vm.$mount(vm.$options.el);
    }
  };
}


mergeOptions 函数

export function mergeOptions (
  parent: Object,
  child: Object,
  vm?: Component
): Object {

  if (typeof child === 'function') {
    child = child.options
  }

  //props数据规范化处理
  normalizeProps(child, vm)
  
  //inject规范化处理
  normalizeInject(child, vm)
  //
  normalizeDirectives(child)
  
  // Apply extends and mixins on the child options,
  // but only if it is a raw options object that isn't
  // the result of another mergeOptions call.
  // Only merged options has the _base property.
  if (!child._base) {
    if (child.extends) {
      parent = mergeOptions(parent, child.extends, vm)
    }
    if (child.mixins) {
      for (let i = 0, l = child.mixins.length; i < l; i++) {
        parent = mergeOptions(parent, child.mixins[i], vm)
      }
    }
  }

  const options = {}
  let key
  for (key in parent) {
  //将parent中key全部注入options中
    mergeField(key)
  }
  for (key in child) {
  //将child中存在,但在parent中不不存在的key注入options中
    if (!hasOwn(parent, key)) {
      mergeField(key)
    }
  }
  function mergeField (key) {
    const strat = strats[key] || defaultStrat
    options[key] = strat(parent[key], child[key], vm, key)
  }
  return options
}

  • parent其实就是父options;

  • child其实就是当前传入的几new Vue({})中传入的options
    在这里插入图片描述

  • normalizeProps(child, vm)

  • normalizeInject(child, vm)

  • normalizeDirectives(child)

  • 执行完for (key in parent) {}之后
    在这里插入图片描述

  • 执行完for (key in child) {}之后

在这里插入图片描述

export function resolveConstructorOptions (Ctor: Class<Component>) {
  // Ctor为Vue构造函数
  let options = Ctor.options
  if (Ctor.super) {
    // 存在基类,递归解析基类构造函数的选项
    const superOptions = resolveConstructorOptions(Ctor.super)
    const cachedSuperOptions = Ctor.superOptions
    if (superOptions !== cachedSuperOptions) {
      // 说明基类构造函数选项已经发生改变,需要重新设置
      Ctor.superOptions = superOptions
      // 检查 Ctor.options 上是否有任何后期修改/附加的选项
      const modifiedOptions = resolveModifiedOptions(Ctor)
      // 如果存在被修改或增加的选项,则合并两个选项
      if (modifiedOptions) {
        extend(Ctor.extendOptions, modifiedOptions)
      }
         // 选项合并,将合并结果赋值为 Ctor.options
      options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions)
      if (options.name) {
        options.components[options.name] = Ctor
      }
    }
  }
  return options
}


在这里插入图片描述

后续补充

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值