在vue源码分析(三) new Vue背后的故事 中我们了解了options
选项中如果存在el
属性或者直接调用$mount
方法都会执行$mount
方法。
compile
中的 $mount
$mount
方法的实现与平台和构建方式有关,它是定义在Vue.prototype
上,
// src/platform/weex/runtime/index.js
Vue.prototype.$mount = function (
el?: any,
hydrating?: boolean
): Component {
return mountComponent(
this,
el && query(el, this.$document),
hydrating
)
}
// src/platform/weex/runtime/index.js
// public mount method
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
el = el && inBrowser ? query(el) : undefined
return mountComponent(this, el, hydrating)
}
src/platform/web/entry-runtime-with-compiler.js
const mount = Vue.prototype.$mount
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
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 or - 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')
}
const { render, staticRenderFns } = compileToFunctions(template, {
outputSourceRange: process.env.NODE_ENV !== 'production',
shouldDecodeNewlines,
shouldDecodeNewlinesForHref,
delimiters: options.delimiters,
comments: options.comments
}, this)
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')
}
}
}
return mount.call(this, el, hydrating)
}
entry-runtime-with-compiler.js
中对src/platform/weex/runtime/index.js
的$mount
方法作了缓存,并重新定义了自己的Vue.prototype.$mount
方法entry-runtime-with-compiler.js
的$mount
方法中作了以下工作el
是否是html
或者body
元素,命中就给出错误提示信息options
选项是否有render
方法,如果没有接着判断是否有template
选项template
选项,会调用compileToFunctions
生成render
和staticRenderFns
并添加到options
选项上mount
方法mount.call(this, el, hydrating)
在src/platform/web/entry-runtime-with-compiler.js
的$mount
方法中,vue
在解析生成template
的过程中会对template
的类型作了猜测.如果没有render
函数有template
template
是以#
开头的id
选择器会调用idToTemplate
方法获取真实的html
元素
const idToTemplate = cached(id => {
const el = query(id)
return el && el.innerHTML
})
/**
* Create a cached version of a pure function.
*/
export function cached<F: Function> (fn: F): F {
const cache = Object.create(null)
return (function cachedFn (str: string) {
const hit = cache[str]
return hit || (cache[str] = fn(str))
}: any)
}
cached
是一个纯函数也是一个闭包,私有变量cache
缓存着通过id选择器匹配到的dom
节点,结构类似于cache:{'#root':}
cache
是一个缓存对象,对fn(str)
的结果作了缓存,再次调用cached
方法时,如果str
存在于cache
对象中那么会直接返回结果,从而避免执行fn
,这是一种使用闭包对计算结果作缓存的优化方式。
如果template
的结构是 会命中
template.nodeType
分支,这时template
就是
如果没有template
但存在el
,会调用getOuterHTML
方法生成template
/**
* Get outerHTML of elements, taking care
* of SVG elements in IE as well.
*/
function getOuterHTML (el: Element): string {
if (el.outerHTML) {
return el.outerHTML
} else {
const container = document.createElement('div')
container.appendChild(el.cloneNode(true))
return container.innerHTML
}
}
runtime
中的$mount
无论时带编译功能的vue
版本还是只是运行时的vue
版本,最终都会执行src/platform/web/runtime/index.js
中定义的$mount
方法,而$mount
方法中会执行mountComponent
方法。
Vue.prototype.$mount = function (
el?: string | Element,
hydrating?: boolean
): Component {
el = el && inBrowser ? query(el) : undefined
return mountComponent(this, el, hydrating)
}
mountComponent
在src/core/instance/lifecycle.js
中定义了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
)
}
}
}
callHook(vm, 'beforeMount')
let updateComponent
/* istanbul ignore if */
// performance 与性能分析相关
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 && !vm._isDestroyed) {
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
}
当
vm.$vnode == null时
,认为组件挂载已经完成,调用callHook(vm, 'mounted')
该方法中主要做了以下工作
定义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)
}
}
渲染watcher
,在new watcher
的过程中执行了updateComponent
方法(options存在
)
// 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 && !vm._isDestroyed) {
callHook(vm, 'beforeUpdate')
}
}
}, true /* isRenderWatcher */)
vue
版本可以写template
或者render
函数,vue
会调用compileToFunctions
方法将template
转换成需要的render
函数template
,vue
会猜测template
可能出现的形式,其中如果是以#
开头的字符串,vue
在cached
方法中使用闭包对计算结果作了缓存vue
会着重关注options
对象中的render函数
updateComponent
方法在new Watcher()
中以this.get()
方法执行。