摘要:本次分析的版本是。的實(shí)例化由上一章我們了解了類的定義,本章主要分析用戶實(shí)例化類之后,框架內(nèi)部做了具體的工作。所以我們先看看的構(gòu)造函數(shù)里面定義了什么方法。這個(gè)文件聲明了類的構(gòu)造函數(shù),構(gòu)造函數(shù)中直接調(diào)用了實(shí)例方法來初始化的實(shí)例,并傳入?yún)?shù)。
背景
Vue.js是現(xiàn)在國(guó)內(nèi)比較火的前端框架,希望通過接下來的一系列文章,能夠幫助大家更好的了解Vue.js的實(shí)現(xiàn)原理。本次分析的版本是Vue.js2.5.16。(持續(xù)更新中。。。)
目錄Vue.js的引入
Vue的實(shí)例化
Vue數(shù)據(jù)處理(未完成)
。。。
Vue的實(shí)例化由上一章我們了解了Vue類的定義,本章主要分析用戶實(shí)例化Vue類之后,Vue.js框架內(nèi)部做了具體的工作。
舉個(gè)例子
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: "
以上是一個(gè)簡(jiǎn)單的vue實(shí)例化的例子,用戶通過new的方式創(chuàng)建了一個(gè)Vue的實(shí)例demo。所以我們先看看Vue的構(gòu)造函數(shù)里面定義了什么方法。
src/core/instance/index.js
這個(gè)文件聲明了Vue類的構(gòu)造函數(shù),構(gòu)造函數(shù)中直接調(diào)用了實(shí)例方法_init來初始化vue的實(shí)例,并傳入options參數(shù)。
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
接下來我們看看這個(gè)_init方法具體做了什么事情。
src/core/instance/init.js
這個(gè)文件的initMixin方法定義了vue實(shí)例方法_init。
Vue.prototype._init = function (options?: Object) { // this指向Vue的實(shí)例,所以這里是將Vue的實(shí)例緩存給vm變量 const vm: Component = this // a uid // 每一個(gè)vm有一個(gè)_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實(shí)例 vm._isVue = true // merge options // 處理傳入的參數(shù),并將構(gòu)造方法上的屬性跟傳入的屬性合并(merge) // 處理子組件的options,后續(xù)講到組件會(huì)詳細(xì)展開 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屬性,非生產(chǎn)環(huán)境ES6的proxy代理,對(duì)非法屬性獲取進(jìn)行提示 if (process.env.NODE_ENV !== "production") { initProxy(vm) } else { vm._renderProxy = vm } // expose real self // 添加vm的_self屬性 vm._self = vm // 對(duì)vm進(jìn)行各種初始化 // 將vm自身添加到該vm的父組件的的$children數(shù)組中 // 添加vm的$parent,$root,$children,$refs,_watcher,_inactive,_directInactive,_isMounted,_isDestroyed,_isBeingDestroyed屬性 // 具體實(shí)現(xiàn)在 src/core/instance/lifecycle.js中,代碼比較簡(jiǎn)單,不做展開 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 屬性設(shè)置為響應(yīng)式的 initRender(vm) // 觸發(fā)beforeCreate鉤子,如果options中有beforeCreate的回調(diào)函數(shù),則會(huì)被調(diào)用 callHook(vm, "beforeCreate") initInjections(vm) // resolve injections before data/props // 初始化state,包括Props,methods,Data,Computed,watch; // 這塊內(nèi)容比較核心,所以會(huì)在下一章詳細(xì)講解,這里先大概描述一下 // 對(duì)于prop以及data屬性,將其設(shè)置為vm的響應(yīng)式屬性,即使用object.defineProperty綁定vm的prop和data屬性并設(shè)置其getter&setter // 對(duì)于methods,則將每個(gè)method都掛載在vm上,并將this指向vm // 對(duì)于Computed,在將其設(shè)置為vm的響應(yīng)式屬性之外,還需要定義watcher,用于收集依賴 // watch屬性,也是將其設(shè)置為watcher實(shí)例,收集依賴 initState(vm) // 初始化provide屬性 initProvide(vm) // resolve provide after data/props // 至此,所有數(shù)據(jù)的初始化工作已經(jīng)做完,所有觸發(fā)created鉤子,在這個(gè)鉤子的回調(diào)中可以訪問之前所定義的所有數(shù)據(jù) 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) } // 調(diào)用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 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") } // 根據(jù)模板生成相關(guān)的render,staticRenderFns方法 // 這塊內(nèi)容涉及的內(nèi)容比較多,會(huì)在后面的其他章節(jié)中有詳細(xì)講解 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") } } } // 調(diào)用前面緩存的mount方法 return mount.call(this, el, hydrating) }
接下來看看緩存的$mount方法的實(shí)現(xiàn)
platforms/web/runtime/index.js
Vue.prototype.$mount = function ( el?: string | Element, hydrating?: boolean ): Component { // 獲取相關(guān)的dom元素,執(zhí)行mountComponent方法 el = el && inBrowser ? query(el) : undefined return mountComponent(this, el, hydrating) }
看看mountComponent方法的實(shí)現(xiàn)
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 ) } } } // 調(diào)用beforeMount鉤子 callHook(vm, "beforeMount") // 設(shè)置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 // 創(chuàng)建watcher對(duì)象,具體watch的實(shí)現(xiàn)會(huì)在下一章詳細(xì)分析 // 簡(jiǎn)單描述一下這個(gè)過程:初始化這個(gè)watcher對(duì)象,執(zhí)行updateComponent方法,收集相關(guān)的依賴 // updateComponent的執(zhí)行過程: // 先執(zhí)行vm._render方法,根據(jù)之前生成的render方法,生成相關(guān)的vnode,也就是virtual dom相關(guān)的內(nèi)容,這個(gè)會(huì)在后續(xù)渲染的章節(jié)詳細(xì)講解 // 通過生成的vnode,調(diào)用vm._update,最終將vnode生成的dom插入到父節(jié)點(diǎn)中,完成組件的載入 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 // 調(diào)用mounted鉤子,在這個(gè)鉤子的回調(diào)函數(shù)中可以訪問到真是的dom節(jié)點(diǎn),因?yàn)樵谏鲜鲞^程中已經(jīng)將真實(shí)的dom節(jié)點(diǎn)插入到父節(jié)點(diǎn) callHook(vm, "mounted") } return vm }
OK,以上就是Vue整個(gè)實(shí)例化的過程,多謝觀看&歡迎拍磚。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/93985.html
摘要:本次分析的版本是。持續(xù)更新中。。。目錄的引入的實(shí)例化的引入這一章將會(huì)分析用戶在引入后,框架做的初始化工作創(chuàng)建這個(gè)類,并往類上添加類屬性類方法和實(shí)例屬性實(shí)例方法。 背景 Vue.js是現(xiàn)在國(guó)內(nèi)比較火的前端框架,希望通過接下來的一系列文章,能夠幫助大家更好的了解Vue.js的實(shí)現(xiàn)原理。本次分析的版本是Vue.js2.5.16。(持續(xù)更新中。。。) 目錄 Vue.js的引入 Vue的實(shí)例化...
摘要:寫在前面其實(shí)最開始不是特意來研究的源碼,只是想了解下的命令,如果想要了解命令的話,那么繞不開寫的。通過分析發(fā)現(xiàn)與相比,變化太大了,通過引入插件系統(tǒng),可以讓開發(fā)者利用其暴露的對(duì)項(xiàng)目進(jìn)行擴(kuò)展。 showImg(https://segmentfault.com/img/bVboijb?w=1600&h=1094); 寫在前面 其實(shí)最開始不是特意來研究 vue-cli 的源碼,只是想了解下 n...
摘要:但沒辦法,還是得繼續(xù)。因?yàn)檫@邊返回的是一個(gè),所以會(huì)執(zhí)行如下代碼然后回到剛才的里面,,額,好吧。。。 這段時(shí)間折騰了一個(gè)vue的日期選擇的組件,為了達(dá)成我一貫的使用舒服優(yōu)先原則,我決定使用directive來實(shí)現(xiàn),但是通過這個(gè)實(shí)現(xiàn)有一個(gè)難點(diǎn)就是我如何把時(shí)間選擇的組件插入到dom中,所以問題來了,我是不是又要看Vue的源碼? vue2.0即將到來,改了一大堆,F(xiàn)ragment沒了,所以vu...
摘要:一方面是因?yàn)橄胍朔约旱亩栊?,另一方面也是想重新溫故一遍。一共分成了個(gè)基礎(chǔ)部分,后續(xù)還會(huì)繼續(xù)記錄。文章中如果有筆誤或者不正確的解釋,也歡迎批評(píng)指正,共同進(jìn)步。最后地址部分源碼 Why? 網(wǎng)上現(xiàn)有的Vue源碼解析文章一搜一大批,但是為什么我還要去做這樣的事情呢?因?yàn)橛X得紙上得來終覺淺,絕知此事要躬行。 然后平時(shí)的項(xiàng)目也主要是Vue,在使用Vue的過程中,也對(duì)其一些約定產(chǎn)生了一些疑問,可...
摘要:一方面是因?yàn)橄胍朔约旱亩栊?,另一方面也是想重新溫故一遍。一共分成了個(gè)基礎(chǔ)部分,后續(xù)還會(huì)繼續(xù)記錄。文章中如果有筆誤或者不正確的解釋,也歡迎批評(píng)指正,共同進(jìn)步。最后地址部分源碼 Why? 網(wǎng)上現(xiàn)有的Vue源碼解析文章一搜一大批,但是為什么我還要去做這樣的事情呢?因?yàn)橛X得紙上得來終覺淺,絕知此事要躬行。 然后平時(shí)的項(xiàng)目也主要是Vue,在使用Vue的過程中,也對(duì)其一些約定產(chǎn)生了一些疑問,可...
閱讀 2581·2021-11-23 09:51
閱讀 2495·2021-09-30 09:48
閱讀 1094·2021-09-10 10:51
閱讀 2229·2021-08-12 13:22
閱讀 3583·2021-08-11 10:24
閱讀 2183·2019-08-30 15:55
閱讀 653·2019-08-30 14:05
閱讀 3220·2019-08-30 13:03