前端 | Vue2 初始化流程 - init



接上篇文章 vue2 打包流程,了解了我们拿到手的 Vue 是怎样的一个结构,从源码中已经执行了哪些步骤。
这篇则接着记录,初始化好后的 Vue 函数在被我们调用初始化成实例的过程

准备

package.json

需要 package.json 中的 dev 指令后加 sourcemap, 方便我们直接看到未打包的源代码,否则就直接在 dist/vue 里直接跑,不利于我们理解代码结构

1
"dev": "rollup -w -c scripts/config.js --environment TARGET:web-full-dev --sourcemap"

继而直接命令行根目录直接执行 npm run dev,或者直接在 package.json 中 “scripts” 上边 debug 第一个命令

launch.json

配置在 vscode 中调试,新建一个调试环境

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"file": "${workspaceFolder}/examples/my-practice/index.html"
}
]
}

可以直接在源码中打断点,run 起来在 vscode 中跑整个流程

也可以在浏览器打开我们的测试例子 examples/my-practice 里边的 index.html ,打开浏览器 console 就可以打断点了。

断点调试整个流程

可以配置你想要调试的 vue 功能,比如你想要了解响应式,那么就加入 data,然后按步骤看源码里 vue 怎么将拿到的 data 转换成响应式,又在挂载的过程中加入观察者,将其渲染到页面,后续对数据再做出改动,看又会触发哪些功能来实现数据的更新

又或者你想了解 vue 的指令,那么就可以直接写 v-for、v-model 等来进行调试

又或者想了解 vue 的组件,虚拟节点,那就可以写几个子组件,边调边看

下边给出一个例子

1
2
3
4
<div id="app">
<div :class="class" @click="update">$[sum]</div>
<balance></balance>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// index.js

Vue.mixin({
created() {
console.log('parent created')
}
})

let app = new Vue({
el: '#app',
delimiters: ['$[', ']'],
components: {
balance: {
template: `
<div>
<show @show-balance="show_balance"></show>
<div v-if="show">
<ul>
<li v-for="food in foodList" :key="food.name">$[food.name]:¥ $[food.price]</li>
</ul>
</div>
<div><input v-model="text" /></div>
</div>
`,
methods: {
show_balance: function (data) {
this.show = !this.show
console.log(data)
}
},
data: function () {
return {
show: false,
foodList: [{
name: '葱',
price: '10',
discount: .8
},
{
name: '姜',
price: '8',
discount: .6
},
{
name: '蒜',
price: '8',
discount: null
}
],
logo: '查询菜单',
text: ''
}
}
},
show: {
template: `
<button @click="on_click">$[logo]</button>
<div>$[tips]</div>
`,
props: ['logo'],
created() {
console.log('lifecycle created')
this.tips = '点击上方'
},
mounted() {
console.log('mounted')
},
data() {
return {
tips: ''
}
},
methods: {
on_click() {
// $emit 触发事件,传递数据
this.$emit('show-balance', {
bad: 1,
ass: 2
})
}
}
}
},
watch: {
sum(val) {
console.log('the newVal of sum is' + val)
}
},
data() {
return {
class: 'date',
base: 10
}
},
computed: {
sum() {
return this.base * 10
}
},
methods: {
update() {
this.base += 10
}
}
})

init

我们将自己写的配置传入 Vue 函数后,下一步就进入到 Vue 的实例初始化阶段

1
2
3
4
5
6
7
8
9
10
// core/instance/index.js

function Vue (options) {
if (process.env.NODE_ENV !== 'production' &&
!(this instanceof Vue)
) {
warn('Vue is a constructor and should be called with the `new` keyword')
}
this._init(options)
}

初始化阶段, 首先会合并传入的配置, 这里会进行判断,当前的实例是组件还是根实例,组件会在根实例处理 children 时被遍历,判断是组件了则会打上 _isComponent 标记,组件初始化时有组件的合并机制,根实例则有根实例的合并机制。

配置 proxy 代理环境,如果为开发环境则初始化一个代理,否则指向vue实例本身

接着保存当前的实例为 _self

之后就进入一连串的初始化,在 beforeCreate 之前,执行了 initLifecycle、initEvents、initRender 三者的初始化,具体可查看下一级标题;此前并没有初始化到数据内容 state,那么 beforeCreate 的钩子函数中就不能获取到 props、data 中定义的值,也不能调用 methods 中定义的函数。

在 beforeCreate 和 created 之间,初始化了 initInjections、initState、initProvide ,其中 provide/inject 需要一起使用,由祖先组件提供了一个 provide,provide 里的属性可供所有的后代组件通过 inject 注入并调用,具体可查看下一级标题;

那么此时 created 钩子函数就可以读取到 data、props、methods、computed 等属性;此外在这俩个钩子函数执行的时候,并没有渲染 DOM,所以不能够访问 DOM,一般来说,如果组件在加载的时候需要和后端有交互,放在这俩个钩子函数执行都可以

最后判断 vm.$options 配置上是否存在 el 属性,如有,则执行挂载操作。此 el 也就是我们例子中实例所配置的元素标签,而在组件中是不存在的,因为最后组件都会整合到实例上,一起挂载到 #app

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// core/instance/init.js

Vue.prototype._init = function (options?: Object) {
const vm: Component = this
// a uid
vm._uid = uid++

let startTag, endTag
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
startTag = `vue-perf-start:${vm._uid}`
endTag = `vue-perf-end:${vm._uid}`
mark(startTag)
}

// a flag to avoid this being observed
vm._isVue = true
// merge options
if (options && options._isComponent) {
// optimize internal component instantiation
// since dynamic options merging is pretty slow, and none of the
// internal component options needs special treatment.
initInternalComponent(vm, options)
} else {
vm.$options = mergeOptions(
resolveConstructorOptions(vm.constructor), // vue 的构造器
options || {},
vm
)
}
/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
initProxy(vm)
} else {
vm._renderProxy = vm
}
// expose real self
vm._self = vm
initLifecycle(vm)
initEvents(vm)
initRender(vm)
callHook(vm, 'beforeCreate')
initInjections(vm) // resolve injections before data/props
initState(vm) // 截至 created 函数前,vue 实例上的数据都准备好了
initProvide(vm) // resolve provide after data/props
callHook(vm, 'created') // 此时执行 created 钩子函数,数据已准备好

/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
vm._name = formatComponentName(vm, false)
mark(endTag)
measure(`vue ${vm._name} init`, startTag, endTag)
}

if (vm.$options.el) {
vm.$mount(vm.$options.el) // 若当前组件参数中有节点,则执行挂载操作
}
}

mergeOptions

此时走的流程是根实例合并配置,用 mergeOptions 将实例 vm 的构造函数的 options 和用户传入的 options 进行合并,首先会检查用户传入的配置中是否组件 components,有则继续确认组件的命名是否符合规范,那么我这里的两个组件 balance 和 show 都是没有问题滴, 均放入 $options.components

接着标准化根实例传入的 props、inject,directives;再将两者配置中的 extends、mixins 递归合并至 parent ,最后将 parent 和 child 各属性再合并在一起,返回 options 给 vm.$options

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// core/util/options.js

function mergeOptions (
parent: Object, // Vue 构造函数的 option
child: Object, // 用户传入的 option
vm?: Component // vue 实例
): Object {
if (process.env.NODE_ENV !== 'production') {
checkComponents(child)
}

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

normalizeProps(child, vm)
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) // 递归将 extends 合并到 parent
}
if (child.mixins) {
for (let i = 0, l = child.mixins.length; i < l; i++) {
parent = mergeOptions(parent, child.mixins[i], vm) // 递归将 mixins 合并到 parent
}
}
}

// 将 parent 和 child 合并
const options = {}
let key
for (key in parent) {
mergeField(key)
}
for (key in child) {
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
}

initProxy

配置 proxy 代理环境,如果为开发环境则初始化一个代理,否则指向vue实例本身;开发环境下若当前环境 proxy 可用,则根据 options 中是否配置 render 相关,来匹配给 vm 代理增加什么方法,在每次调用 vm 上的方法属性时,会依据此方法进行检测,不符合则会报错;若是当前环境不支持 proxy ,则直接令 _renderProxy 指向当前的实例 vm

其中 getHandler 方法,主要是针对读取代理对象的某个属性时进行的操作。当访问的属性不是 string 类型或者属性值在被代理的对象上不存在,则抛出错误提示。

hasHandler方法可以查看 vm 实例是否拥有某个属性,返回一个布尔值 — 比如调用 for in 循环遍历 vm 实例属性时,会触发 hasHandler 方法,首先使用 in 操作符判断该属性是否在 vm 实例上存在,再通过 allowedGlobals 确定属性名称是否可用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// core/instance/proxy.js

const hasProxy =
typeof Proxy !== 'undefined' && isNative(Proxy)

if (hasProxy) {
const isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact')
config.keyCodes = new Proxy(config.keyCodes, {
set (target, key, value) {
if (isBuiltInModifier(key)) {
warn(`Avoid overwriting built-in modifier in config.keyCodes: .${key}`)
return false
} else {
target[key] = value
return true
}
}
})
}

const hasHandler = {
has (target, key) {
const has = key in target
const isAllowed = allowedGlobals(key) ||
(typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data))
if (!has && !isAllowed) {
if (key in target.$data) warnReservedPrefix(target, key)
else warnNonPresent(target, key)
}
return has || !isAllowed
}
}

const getHandler = {
get (target, key) {
if (typeof key === 'string' && !(key in target)) {
if (key in target.$data) warnReservedPrefix(target, key)
else warnNonPresent(target, key)
}
return target[key]
}
}

initProxy = function initProxy (vm) {
if (hasProxy) {
// determine which proxy handler to use
const options = vm.$options
const handlers = options.render && options.render._withStripped
? getHandler // 读取代理对象的某个属性
: hasHandler // 查询代理对象的某个属性
vm._renderProxy = new Proxy(vm, handlers)
} else {
vm._renderProxy = vm
}
}

initLifecycle

初始化 $parent, $root, $children, $refs, 当前根实例没有 $parent, 所以就记为实例本身,接着再初始化生命周期系列内部属性

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// core/instance/lifecycle.js

function initLifecycle (vm: Component) {
const options = vm.$options

// locate first non-abstract parent
let parent = options.parent
if (parent && !options.abstract) { // 如果存在父级
while (parent.$options.abstract && parent.$parent) {
parent = parent.$parent // 定位至第一个不抽象的父级
}
parent.$children.push(vm) // 将当前组件作为该父级的子级
}

vm.$parent = parent
vm.$root = parent ? parent.$root : vm // 如无父级,则组件的根级就是自己

// 初始化组件的子级组、ref
vm.$children = []
vm.$refs = {}

// 初始化生命周期系列内部属性
vm._watcher = null
vm._inactive = null
vm._directInactive = false
vm._isMounted = false
vm._isDestroyed = false
vm._isBeingDestroyed = false
}

initEvents

根实例没有什么变动,只是初始化了 _events、_hasHookEvent 两个属性

1
2
3
4
5
6
7
8
9
10
11
// core/instance/events.js

function initEvents (vm: Component) {
vm._events = Object.create(null)
vm._hasHookEvent = false
// init parent attached events
const listeners = vm.$options._parentListeners
if (listeners) {
updateComponentListeners(vm, listeners)
}
}

initRender

initRender 初始化做了一些虚拟节点相关的工作,初始化了 _vnode、 $vnode, $vnode 这里也指向 parentVnode , 代表当前实例虚拟节点的父级节点,由于当前实例为根实例,那么自然时不存在的;_vnode 则表示当前实例的根虚拟节点

接着 vm._cvm.$createElement 是很重要的方法,createElement 方法用来创建 VNode

最后给当前根实例添加 $attrs、$listeners 两个响应式属性

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// core/instance/render.js

function initRender (vm: Component) {
vm._vnode = null // the root of the child tree
vm._staticTrees = null // v-once cached trees
const options = vm.$options
const parentVnode = vm.$vnode = options._parentVnode // the placeholder node in parent tree
const renderContext = parentVnode && parentVnode.context
vm.$slots = resolveSlots(options._renderChildren, renderContext)
vm.$scopedSlots = emptyObject
// bind the createElement fn to this instance
// so that we get proper render context inside it.
// args order: tag, data, children, normalizationType, alwaysNormalize
// internal version is used by render functions compiled from templates
vm._c = (a, b, c, d) => createElement(vm, a, b, c, d, false)
// normalization is always applied for the public version, used in
// user-written render functions.
vm.$createElement = (a, b, c, d) => createElement(vm, a, b, c, d, true)

// $attrs & $listeners are exposed for easier HOC creation.
// they need to be reactive so that HOCs using them are always updated
const parentData = parentVnode && parentVnode.data

/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, () => {
!isUpdatingChildComponent && warn(`$attrs is readonly.`, vm)
}, true)
defineReactive(vm, '$listeners', options._parentListeners || emptyObject, () => {
!isUpdatingChildComponent && warn(`$listeners is readonly.`, vm)
}, true)
} else {
defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true)
defineReactive(vm, '$listeners', options._parentListeners || emptyObject, null, true)
}
}

__beforeCreate__

initInjections

在初始化 data/props 之前被调用,对 inject 属性中的各个key进行遍历,然后沿着父组件链一直向上查找 provide 中和 inject 对应的属性,直到查找到根组件或者找到为止,然后返回结果。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// core/instance/inject.js

function initInjections (vm: Component) {
const result = resolveInject(vm.$options.inject, vm)
if (result) {
toggleObserving(false)
Object.keys(result).forEach(key => {
/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
defineReactive(vm, key, result[key], () => {
warn(
`Avoid mutating an injected value directly since the changes will be ` +
`overwritten whenever the provided component re-renders. ` +
`injection being mutated: "${key}"`,
vm
)
})
} else {
defineReactive(vm, key, result[key])
}
})
toggleObserving(true)
}
}

function resolveInject (inject: any, vm: Component): ?Object {
if (inject) {
// inject is :any because flow is not smart enough to figure out cached
const result = Object.create(null)
const keys = hasSymbol
? Reflect.ownKeys(inject)
: Object.keys(inject)

for (let i = 0; i < keys.length; i++) {
const key = keys[i]
// #6574 in case the inject object is observed...
if (key === '__ob__') continue
const provideKey = inject[key].from
let source = vm
while (source) {
if (source._provided && hasOwn(source._provided, provideKey)) {
result[key] = source._provided[provideKey]
break
}
source = source.$parent
}
if (!source) {
if ('default' in inject[key]) {
const provideDefault = inject[key].default
result[key] = typeof provideDefault === 'function'
? provideDefault.call(vm)
: provideDefault
} else if (process.env.NODE_ENV !== 'production') {
warn(`Injection "${key}" not found`, vm)
}
}
}
return result
}
}

initState

initState 初始化了传入的配置 props、methods、data、computed、watch ,在此之后就算实例创建完成,可以调用这些属性

在初始化生命周期 initLifecycle 时,给 vm 增加了 watcher ,此时初始化 state 时,新增 _watchers ,表示实例下的观察者组

如果用户传入了相关的配置,那么就会对响应的配置初始化,在处理数据 data 时,如果有传入,那么就按初始化走,如果没有,则直接将 vm._data 响应式化,也是作为根节点的数据

期间 props、data、computed、watch 均做了响应式处理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// core/instance/state.js

function initState (vm: Component) {
vm._watchers = []
const opts = vm.$options // 外界传入值的一些初始化
if (opts.props) initProps(vm, opts.props)
if (opts.methods) initMethods(vm, opts.methods)
if (opts.data) { // 有就初始化,没有先观察,看外界传入不传入
initData(vm)
} else {
observe(vm._data = {}, true /* asRootData */)
}
if (opts.computed) initComputed(vm, opts.computed)
if (opts.watch && opts.watch !== nativeWatch) {
initWatch(vm, opts.watch)
}
}

initProps

初始化 props

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// core/instance/state.js

function initProps (vm: Component, propsOptions: Object) {
const propsData = vm.$options.propsData || {}
const props = vm._props = {}
// cache prop keys so that future props updates can iterate using Array
// instead of dynamic object key enumeration.
const keys = vm.$options._propKeys = []
const isRoot = !vm.$parent
// root instance props should be converted
if (!isRoot) {
toggleObserving(false)
}
for (const key in propsOptions) {
keys.push(key)
const value = validateProp(key, propsOptions, propsData, vm)
/* istanbul ignore else */
if (process.env.NODE_ENV !== 'production') {
const hyphenatedKey = hyphenate(key)
if (isReservedAttribute(hyphenatedKey) ||
config.isReservedAttr(hyphenatedKey)) {
warn(
`"${hyphenatedKey}" is a reserved attribute and cannot be used as component prop.`,
vm
)
}
defineReactive(props, key, value, () => {
if (!isRoot && !isUpdatingChildComponent) {
warn(
`Avoid mutating a prop directly since the value will be ` +
`overwritten whenever the parent component re-renders. ` +
`Instead, use a data or computed property based on the prop's ` +
`value. Prop being mutated: "${key}"`,
vm
)
}
})
} else {
defineReactive(props, key, value)
}
// static props are already proxied on the component's prototype
// during Vue.extend(). We only need to proxy props defined at
// instantiation here.
if (!(key in vm)) {
proxy(vm, `_props`, key)
}
}
toggleObserving(true)
}

initMethods

初始化 methods, 先获取当前实例组件下的方法是否与 props 传入的变量同名,再检测该方法是否为函数,再检测该命名的方法是否与 Vue 实例固有的方法名冲突;若无问题,则将该方法直接挂载在当前实例下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// core/instance/state.js

function initMethods (vm: Component, methods: Object) {
const props = vm.$options.props
for (const key in methods) {
if (process.env.NODE_ENV !== 'production') {
if (typeof methods[key] !== 'function') {
warn(
`Method "${key}" has type "${typeof methods[key]}" in the component definition. ` +
`Did you reference the function correctly?`,
vm
)
}
if (props && hasOwn(props, key)) {
warn(
`Method "${key}" has already been defined as a prop.`,
vm
)
}
if ((key in vm) && isReserved(key)) {
warn(
`Method "${key}" conflicts with an existing Vue instance method. ` +
`Avoid defining component methods that start with _ or $.`
)
}
}
vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm)
}
}

initData

初始化数据,这里在会判断当前实例是否定义了 data, 若无则初始化 _data 为一个空对象, 并使其响应式,标记为根数据;

若当前实例定义了 data, 则走 initData 流程, 判断 data 属性是一个函数, 还是一个对象, 若为函数,则通过 getData 获取函数的返回值,我们知道,data 一般都写成函数返回一个数据对象,所有 getData 做的工作即是将 data 的这个函数指向当前实例 vm , 再将结果返回到 vm._data ; 若 data 是个对象,那就直接返回 data(见下一级分析)

接着再检查返回的 data 是否是一个对象,如不是则抛出警告;

获取定义的 data 中的属性,与当前实例的 methods 的变量名进行比较,有冲突就警告;再与 props 进行检查,确保没有冲突变量;最后检测该 data 属性是否为 Vue 已有的变量名,如不是则对 vm._data 下新增该变量的代理,设置 _data 属性下获取各数据的 get 和 set 规则

注意上方是对 data 内的各个属性读写做了设定,在处理完这些后,调用 observe 将 _data 做响应式,同时设定为根数据,observe 走的即是响应式流程。(见下一级分析)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// core/instance/state.js

function initData (vm: Component) {
let data = vm.$options.data
data = vm._data = typeof data === 'function' // 定义 data 必须为一个函数
? getData(data, vm)
: data || {}
if (!isPlainObject(data)) {
data = {}
process.env.NODE_ENV !== 'production' && warn(
'data functions should return an object:\n' +
'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
vm
)
}
// proxy data on instance
const keys = Object.keys(data)
const props = vm.$options.props
const methods = vm.$options.methods
let i = keys.length
while (i--) {
const key = keys[i]
if (process.env.NODE_ENV !== 'production') {
if (methods && hasOwn(methods, key)) {
warn(
`Method "${key}" has already been defined as a data property.`,
vm
)
}
}
if (props && hasOwn(props, key)) {
process.env.NODE_ENV !== 'production' && warn(
`The data property "${key}" is already declared as a prop. ` +
`Use prop default value instead.`,
vm
)
} else if (!isReserved(key)) {
proxy(vm, `_data`, key) // 在 Vue 下新增 _data 保存数据,并对该属性做响应式处理
}
}
// observe data
observe(data, true /* asRootData */) // 对数据本身做响应式处理
}
getData

可以看到 data 本身被定义为一个函数,该函数根据有无实例 vm 又返回 mergeDataOrFn 函数的执行结果,而 mergeDataOrFn 进一步根据有无实例,有无父子值返回不同的结果,在此是返回 mergedInstanceDataFn 函数,所以 data 函数本质上就是 mergedInstanceDataFn 函数;再将实例数据与默认数据合并后返回,默认数据是 parentVal 传入的值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// core/util/options.js

strats.data = function (
parentVal: any,
childVal: any,
vm?: Component
): ?Function {
if (!vm) {
if (childVal && typeof childVal !== 'function') {
process.env.NODE_ENV !== 'production' && warn(
'The "data" option should be a function ' +
'that returns a per-instance value in component ' +
'definitions.',
vm
)

return parentVal
}
return mergeDataOrFn(parentVal, childVal)
}

return mergeDataOrFn(parentVal, childVal, vm)
}

// mergeDataOrFn
export function mergeDataOrFn (
parentVal: any,
childVal: any,
vm?: Component
): ?Function {
if (!vm) {
// in a Vue.extend merge, both should be functions
if (!childVal) {
return parentVal
}
if (!parentVal) {
return childVal
}
// when parentVal & childVal are both present,
// we need to return a function that returns the
// merged result of both functions... no need to
// check if parentVal is a function here because
// it has to be a function to pass previous merges.
return function mergedDataFn () {
return mergeData(
typeof childVal === 'function' ? childVal.call(this, this) : childVal,
typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal
)
}
} else {
return function mergedInstanceDataFn () {
// instance merge
const instanceData = typeof childVal === 'function' // 获取实例的数据
? childVal.call(vm, vm)
: childVal
const defaultData = typeof parentVal === 'function'
? parentVal.call(vm, vm)
: parentVal
if (instanceData) {
return mergeData(instanceData, defaultData)
} else {
return defaultData
}
}
}
}
observe

补充下上边的 observe 方法,这里是对实例传入的 data(也就是vm._data) 做响应式,首先判断 _data 上是否存在 __ob__ 标识,有就说明已经响应式处理过了;

没有的话就接着判断是否满足创建 Observer 的条件,如 data 需要是对象、数组,是否是服务端渲染,是否应该响应式,该数据不是 vue 等,满足后创建一个新的 Observer 实例;

每个 Observer 也会对应一个依赖收集器 dep;接着给 data 对象添加 __ob__ 属性,并将当前的 Observer 实例赋值给它;

接着判断当前响应式的对象 data 是数组还是对象,采用不同的方法进行响应式处理:

如是数组,再判断浏览器是否支持原型 __proto__,重新定义下数组原型增删排序等方法,如果数组中增加了数据,遍历新增的数据进行响应式处理(元素级别),在数组改变后调用 notify 方法 通知 Watcher 去更新视图;处理完数组原型上原有问题后,再调用 observeArray 方法对数组中的每个元素继续进行 observe 响应式处理。

如果是对象,则调用 walk 继续遍历每个属性用 defineReactive 进行响应式处理, 继续对每个属性创建自己的依赖收集器 dep,再递归调用 observe 看每个属性下是否还有子属性是对象或者数组,都给进行响应式处理,最后对象用 defineProperty 来实现具体的响应式更新,利用 defineProperty 给当前对象的某个属性限定其 get 和 set,一般在有 观察者 watcher 的情况下,获取 data 某个属性的值便会触发依赖收集,将当前的 watcher 放入依赖收集器,返回当前值;再在下次改动该值的情况下触发 notify 来通知各个观察者去修改对应的值

见下方定义:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// core/observer/index.js

export function observe (value: any, asRootData: ?boolean): Observer | void {
if (!isObject(value) || value instanceof VNode) {
return
}
let ob: Observer | void
if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
ob = value.__ob__
} else if (
shouldObserve &&
!isServerRendering() &&
(Array.isArray(value) || isPlainObject(value)) &&
Object.isExtensible(value) &&
!value._isVue
) {
ob = new Observer(value) // 给数据新建响应式处理
}
if (asRootData && ob) {
ob.vmCount++
}
return ob
}

响应式时对数据中的数组和对象分别做了不同的处理,对象我们自然清楚,递归处理直到当前对象下没有子对象了,用 Object.defineProperty 来完成响应式的配置

那么对于数组的情况,想要控制到数组中每个元素的变动能响应式,数组并不能像对象那样拦截属性,因此只能在一些增删减排的操作中获取变动元素来处理其响应式,接着对变动的元素用 observeArray 处理,接着通知观察者更新

下边是对数组方法修改:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// core/observer/array.js

const arrayProto = Array.prototype
export const arrayMethods = Object.create(arrayProto)

const methodsToPatch = [
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
]

/**
* Intercept mutating methods and emit events
*/
methodsToPatch.forEach(function (method) {
// cache original method
const original = arrayProto[method]
def(arrayMethods, method, function mutator (...args) {
const result = original.apply(this, args)
const ob = this.__ob__
let inserted
switch (method) {
case 'push':
case 'unshift':
inserted = args
break
case 'splice':
inserted = args.slice(2)
break
}
if (inserted) ob.observeArray(inserted)
// notify change
ob.dep.notify()
return result
})
})

initComputed

初始化 vm._computedWatchers ,判断用户定义的计算属性是否为一个函数,采用不同的处理方式;再判断是不是服务端渲染期间,若是在此期间 computed 仅为一个 getter ,不是的话将会为当前计算属性创建一个观察者 watcher 挂载在 _computedWatchers 下。

接着会进入到 defineComputed ,与是否 ssr 相反来定义 shouldCache , 判断用户定义的计算属性是否为函数,按 shouldCache 的布尔值来确定下一步,当前为 true ,则令 get 就为 createComputedGetter 返回 computedGetter 函数,通过观察者来获取该计算属性的值;再把这个 set 和 get 规则用 defineProperty 给限定到实例下对应名字的属性

当然我们在实际应用中也可以不设置为单纯的函数,可以拆成 set 和 get 来写,这样的话此处将会走另一种处理,set 为用户自定义的 set,get 则首先判断有没有,没有则默认 noop,有则进一步判断 shouldCache 和 userDef.cache 来确定使用何种方法的 get

随后对 set 进行拦截,set 是否是 noop,提示计算属性不能设置 set;接着将配置好的 get、set 传入 Object.defineProperty 对具体的计算属性进行限定

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// core/instance/state.js

function initComputed (vm: Component, computed: Object) {
// $flow-disable-line
const watchers = vm._computedWatchers = Object.create(null)
// computed properties are just getters during SSR
const isSSR = isServerRendering()

for (const key in computed) {
const userDef = computed[key]
const getter = typeof userDef === 'function' ? userDef : userDef.get
if (process.env.NODE_ENV !== 'production' && getter == null) {
warn(
`Getter is missing for computed property "${key}".`,
vm
)
}

if (!isSSR) {
// create internal watcher for the computed property.
watchers[key] = new Watcher(
vm,
getter || noop,
noop,
computedWatcherOptions
)
}

// component-defined computed properties are already defined on the
// component prototype. We only need to define computed properties defined
// at instantiation here.
if (!(key in vm)) {
defineComputed(vm, key, userDef)
} else if (process.env.NODE_ENV !== 'production') {
if (key in vm.$data) {
warn(`The computed property "${key}" is already defined in data.`, vm)
} else if (vm.$options.props && key in vm.$options.props) {
warn(`The computed property "${key}" is already defined as a prop.`, vm)
}
}
}
}

// defineComputed
export function defineComputed (
target: any,
key: string,
userDef: Object | Function
) {
const shouldCache = !isServerRendering()
if (typeof userDef === 'function') {
sharedPropertyDefinition.get = shouldCache
? createComputedGetter(key)
: createGetterInvoker(userDef)
sharedPropertyDefinition.set = noop
} else {
sharedPropertyDefinition.get = userDef.get
? shouldCache && userDef.cache !== false
? createComputedGetter(key)
: createGetterInvoker(userDef.get)
: noop
sharedPropertyDefinition.set = userDef.set || noop
}
if (process.env.NODE_ENV !== 'production' &&
sharedPropertyDefinition.set === noop) {
sharedPropertyDefinition.set = function () {
warn(
`Computed property "${key}" was assigned to but it has no setter.`,
this
)
}
}
Object.defineProperty(target, key, sharedPropertyDefinition)
}

// createComputedGetter
function createComputedGetter (key) {
return function computedGetter () {
const watcher = this._computedWatchers && this._computedWatchers[key]
if (watcher) {
if (watcher.dirty) {
watcher.evaluate()
}
if (Dep.target) {
watcher.depend()
}
return watcher.value
}
}
}

initWatch

初始化用户书写的 watch , 判断我们写的 watch 下的变量是不是数组,如不是则直接创建 watcher,如是则遍历数组给每个元素都执行 createWatcher

接着判断是不是对象,是不是字符串,进行相应处理;最后返回 $watch 方法处理该观察的变量和操作的结果

在初始化 Vue 的 stateMixin 阶段,给 Vue 的原型上挂载了 $watch 方法

$watch 先判断用户定义的操作是否是个对象,如是则执行 createWatcher ,接着创建观察者 watcher,被观察的对象就是 watch 里写的变量,回调就是用户的操作,当该变量发生改变的时候,会通知各观察者更新变量,执行回调。

创建这个观察者时,会读取这个变量的值,此时的依赖收集目标 Dep.target 就是当前这个观察者;而例子中我们使用的是计算属性 sum,计算属性在上一步已经进行响应式处理,那么此时读取 sum 也会进入相应被拦截的步骤,在 get 计算属性时,又会将计算属性对应的观察者作为全局的 Dep.target , 然后观察者会将当前的依赖 dep 收集起来,同时将当前观察者添加到 dep.subs,并返回计算属性 sum 的值,此时弹出当前的 Dep.target,清除掉依赖收集;

那么此时 Dep.target 又回到 watch 对应的观察者,接着又将当前的依赖(该依赖与上个依赖一样,均是 sum 这个被观察者)进行收集,同时将观察者添加到 subs,那么此时该依赖下 subs 就有了两个观察者,
弹出当前的 Dep.target,清除掉当前的 deps,并返回获得的 sum 值。

如果 watch 的配置有 options.immediate,那么立刻触发当前的回调。最终 $watch 方法返回 unwatchFn 函数待执行,执行的过程即是将刚创建的 watcher 给 teardown 掉,也就是从实例下的 _watchers 中移除掉当前观察者,并且从各依赖收集器 dep 绑定的 subs 中移除

此时初始化 watch 就完成了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// core/instance/state.js

function initWatch (vm: Component, watch: Object) {
for (const key in watch) {
const handler = watch[key]
if (Array.isArray(handler)) {
for (let i = 0; i < handler.length; i++) {
createWatcher(vm, key, handler[i])
}
} else {
createWatcher(vm, key, handler)
}
}
}

// createWatcher
function createWatcher (
vm: Component,
expOrFn: string | Function,
handler: any,
options?: Object
) {
if (isPlainObject(handler)) {
options = handler
handler = handler.handler
}
if (typeof handler === 'string') {
handler = vm[handler]
}
return vm.$watch(expOrFn, handler, options)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// core/instance/state.js

Vue.prototype.$watch = function (
expOrFn: string | Function,
cb: any,
options?: Object
): Function {
const vm: Component = this
if (isPlainObject(cb)) {
return createWatcher(vm, expOrFn, cb, options)
}
options = options || {}
options.user = true
const watcher = new Watcher(vm, expOrFn, cb, options)
if (options.immediate) {
try {
cb.call(vm, watcher.value)
} catch (error) {
handleError(error, vm, `callback for immediate watcher "${watcher.expression}"`)
}
}
return function unwatchFn () {
watcher.teardown()
}
}

initProvide

provide 初始化只是将当前实例上 $options 的 provide 保存在 vm._provided

1
2
3
4
5
6
7
8
9
10
// core/instance/provide.js

function initProvide (vm: Component) {
const provide = vm.$options.provide
if (provide) {
vm._provided = typeof provide === 'function'
? provide.call(vm)
: provide
}
}

created

后续见 compile 篇