背景
Vue.js是如今国内比较火的前端框架,愿望经由历程接下来的一系列文章,能够协助人人更好的相识Vue.js的完成道理。本次剖析的版本是Vue.js2.5.16。(延续更新中。。。)
目次
Vue的实例化
由上一章我们相识了Vue类的定义,本章重要剖析用户实例化Vue类以后,Vue.js框架内部做了细致的事情。
举个例子
var demo = new Vue({
el: '#app',
created(){},
mounted(){},
data:{
a: 1,
},
computed:{
b(){
return this.a+1
}
},
methods:{
handleClick(){
++this.a ;
}
},
components:{
'todo-item':{
template: '<li>to do</li>',
mounted(){
}
}
}
})
以上是一个简朴的vue实例化的例子,用户经由历程new的体式格局建立了一个Vue的实例demo。所以我们先看看Vue的组织函数内里定义了什么要领。
src/core/instance/index.js
这个文件声清楚明了Vue类的组织函数,组织函数中直接挪用了实例要领_init来初始化vue的实例,并传入options参数。
import { initMixin } from './init'
import { stateMixin } from './state'
import { renderMixin } from './render'
import { eventsMixin } from './events'
import { lifecycleMixin } from './lifecycle'
import { warn } from '../util/index'
// 声明Vue类
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)
}
// 将Vue类传入种种初始化要领
initMixin(Vue)
stateMixin(Vue)
eventsMixin(Vue)
lifecycleMixin(Vue)
renderMixin(Vue)
export default Vue
接下来我们看看这个_init要领细致做了什么事情。
src/core/instance/init.js
这个文件的initMixin要领定义了vue实例要领_init。
Vue.prototype._init = function (options?: Object) {
// this指向Vue的实例,所以这里是将Vue的实例缓存给vm变量
const vm: Component = this
// a uid
// 每一个vm有一个_uid,从0顺次叠加
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
// 示意vue实例
vm._isVue = true
// merge options
// 处置惩罚传入的参数,并将组织要领上的属性跟传入的属性兼并(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),
options || {},
vm
)
}
/* istanbul ignore else */
// 增加vm的_renderProxy属性,非生产环境ES6的proxy代办,对不法属性猎取举行提醒
if (process.env.NODE_ENV !== 'production') {
initProxy(vm)
} else {
vm._renderProxy = vm
}
// expose real self
// 增加vm的_self属性
vm._self = vm
// 对vm举行种种初始化
// 将vm本身增加到该vm的父组件的的$children数组中
// 增加vm的$parent,$root,$children,$refs,_watcher,_inactive,_directInactive,_isMounted,_isDestroyed,_isBeingDestroyed属性
// 细致实如今 src/core/instance/lifecycle.js中,代码比较简朴,不做睁开
initLifecycle(vm)
// 增加vm._events,vm._hasHookEvent属性
initEvents(vm)
// 增加vm._vnode,vm._staticTrees,vm.$vnode,vm.$slots,vm.$scopedSlots,vm._c,vm.$createElement
// 将vm上的$attrs,$listeners 属性设置为相应式的
initRender(vm)
// 触发beforeCreate钩子,假如options中有beforeCreate的回调函数,则会被挪用
callHook(vm, 'beforeCreate')
initInjections(vm) // resolve injections before data/props
// 初始化state,包含Props,methods,Data,Computed,watch;
// 这块内容比较中心,所以会鄙人一章细致解说,这里先也许形貌一下
// 关于prop以及data属性,将其设置为vm的相应式属性,即运用object.defineProperty绑定vm的prop和data属性并设置其getter&setter
// 关于methods,则将每一个method都挂载在vm上,并将this指向vm
// 关于Computed,在将其设置为vm的相应式属性以外,还需要定义watcher,用于网络依靠
// watch属性,也是将其设置为watcher实例,网络依靠
initState(vm)
// 初始化provide属性
initProvide(vm) // resolve provide after data/props
// 至此,一切数据的初始化事情已做完,一切触发created钩子,在这个钩子的回调中能够接见之前所定义的一切数据
callHook(vm, '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)
}
// 挪用vm上的$mount要领
if (vm.$options.el) {
vm.$mount(vm.$options.el)
}
}
接下来剖析一下vm上的$mount要领细致做了什么事情
platforms/web/entry-runtime-with-compiler.js
// 缓存Vue.prototype上的$mount要领到变量mount上
const mount = Vue.prototype.$mount
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
// 猎取dom上的元素
el = el && query(el)
/* istanbul ignore if */
if (el === document.body || el === document.documentElement) {
process.env.NODE_ENV !== 'production' && warn(
`Do not mount Vue to <html> or <body> - mount to normal elements instead.`
)
return this
}
const options = this.$options
// resolve template/el and convert to render function
if (!options.render) {
// 猎取&天生模板
let template = options.template
if (template) {
if (typeof template === 'string') {
if (template.charAt(0) === '#') {
template = idToTemplate(template)
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && !template) {
warn(
`Template element not found or is empty: ${options.template}`,
this
)
}
}
} else if (template.nodeType) {
template = template.innerHTML
} else {
if (process.env.NODE_ENV !== 'production') {
warn('invalid template option:' + template, this)
}
return this
}
} else if (el) {
template = getOuterHTML(el)
}
if (template) {
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('compile')
}
// 依据模板天生相干的render,staticRenderFns要领
// 这块内容触及的内容比较多,会在背面的其他章节中有细致解说
const { render, staticRenderFns } = compileToFunctions(template, {
shouldDecodeNewlines,
shouldDecodeNewlinesForHref,
delimiters: options.delimiters,
comments: options.comments
}, this)
// 将render,staticRenderFns要领增加到options上
options.render = render
options.staticRenderFns = staticRenderFns
/* istanbul ignore if */
if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
mark('compile end')
measure(`vue ${this._name} compile`, 'compile', 'compile end')
}
}
}
// 挪用前面缓存的mount要领
return mount.call(this, el, hydrating)
}
接下来看看缓存的$mount要领的完成
platforms/web/runtime/index.js
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
// 猎取相干的dom元素,实行mountComponent要领
el = el && inBrowser ? query(el) : undefined
return mountComponent(this, el, hydrating)
}
看看mountComponent要领的完成
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
)
}
}
}
// 挪用beforeMount钩子
callHook(vm, 'beforeMount')
// 设置updateComponent要领
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
// 建立watcher对象,细致watch的完成会鄙人一章细致剖析
// 简朴形貌一下这个历程:初始化这个watcher对象,实行updateComponent要领,网络相干的依靠
// updateComponent的实行历程:
// 先实行vm._render要领,依据之前天生的render要领,天生相干的vnode,也就是virtual dom相干的内容,这个会在后续衬着的章节细致解说
// 经由历程天生的vnode,挪用vm._update,最终将vnode天生的dom插进去到父节点中,完成组件的载入
new Watcher(vm, updateComponent, noop, null, 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
// 挪用mounted钩子,在这个钩子的回调函数中能够接见到真是的dom节点,由于在上述历程当中已将实在的dom节点插进去到父节点
callHook(vm, 'mounted')
}
return vm
}
OK,以上就是Vue全部实例化的历程,多谢寓目&迎接拍砖。