摘要:源碼版本為原文地址和有必要了解這兩個(gè)概念的區(qū)別。點(diǎn)開目錄下的,發(fā)現(xiàn)確實(shí)是導(dǎo)出了一個(gè)構(gòu)造函數(shù)。再回過頭看,它給構(gòu)造函數(shù)擴(kuò)展了一些方法具體的邏輯后文看。
前言
網(wǎng)上vue的源碼分析也蠻多的,不過很多都是1.0版本的并且大多都是在講數(shù)據(jù)的observe,索性自己看看源碼,雖然很難但是希望能學(xué)到點(diǎn)東西。
源碼版本為2.0.0原文地址 runtime和runtime-with-compiler
有必要了解這兩個(gè)概念的區(qū)別。我們寫vue程序的時(shí)候一般會(huì)給出template,但是仔細(xì)看過文檔的話一定知道vue支持render函數(shù)的寫法。runtime版本可直接執(zhí)行render函數(shù)寫法,假如是template寫法,需要先利用compiler解析模板至render函數(shù),再執(zhí)行render函數(shù)渲染。
為了學(xué)習(xí)起來簡單,選擇先從runtime版本入手,事實(shí)上兩者相差的只是一個(gè)將模板字符串編譯成為 JavaScript 渲染函數(shù)的過程。
入口文件上面已經(jīng)說過從runtime版本入手,所以首要任務(wù)就是找到runtime版本的入口文件。
點(diǎn)開entries目錄下的web-runtime.js,發(fā)現(xiàn)確實(shí)是導(dǎo)出了一個(gè)Vue構(gòu)造函數(shù)。先寫一個(gè)例子跑起來試試
import Vue from "../src/entries/web-runtime.js" window.app = new Vue({ data: { msg: "hello", }, render (h) { return h("p", this.msg) } }).$mount("#root")
簡單的寫個(gè)webpack配置文件
"use strict" const path = require("path") const webpack = require("webpack") module.exports = { watch: true, entry: { app: "./index.js" }, output: { filename: "[name].js", path: path.resolve(__dirname, "dist") }, resolve: { extensions: [".js"], alias: { vue: path.resolve(__dirname, "../src/entries/web-runtime-with-compiler"), compiler: path.resolve(__dirname, "../src/compiler"), core: path.resolve(__dirname, "../src/core"), shared: path.resolve(__dirname, "../src/shared"), web: path.resolve(__dirname, "../src/platforms/web"), server: path.resolve(__dirname, "../src/server"), entries: path.resolve(__dirname, "../src/entries"), sfc: path.resolve(__dirname, "../src/sfc") } }, module: { rules: [ { test: /.js$/, loader: "babel-loader", include: [path.resolve(__dirname, "../src")] } ] } }
注意配置一下extensions和alias,由于vue的源碼編寫時(shí)添加了類型檢測(flow.js),所以需要在babel中添加插件transform-flow-strip-types
webpack打包一下打開瀏覽器,hello映入眼簾。
至此,準(zhǔn)備工作結(jié)束
點(diǎn)開web-runtime.js可以發(fā)現(xiàn)Vue是從core/index.js導(dǎo)入的,代碼如下:
import config from "./config" import { initGlobalAPI } from "./global-api/index" import Vue from "./instance/index" initGlobalAPI(Vue) Object.defineProperty(Vue.prototype, "$isServer", { get: () => config._isServer }) Vue.version = "2.0.0" export default Vue
又發(fā)現(xiàn)Vue是從instance/index.js導(dǎo)入的,代碼如下:
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" 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) } initMixin(Vue) stateMixin(Vue) eventsMixin(Vue) lifecycleMixin(Vue) renderMixin(Vue) export default Vue
到此時(shí),我們算是真正的看到了Vue的構(gòu)造函數(shù),構(gòu)造函數(shù)做了兩件事:
強(qiáng)制我們使用new關(guān)鍵字實(shí)例化
實(shí)例的初始化操作
定義了構(gòu)造函數(shù)之后,執(zhí)行了五個(gè)函數(shù),這五個(gè)函數(shù)擴(kuò)展了Vue
的原型,也即定義了一些實(shí)例方法。
export function initMixin (Vue: Class) { Vue.prototype._init = function (options?: Object) { const vm: Component = this ...
再回過頭看initGlobalAPI(Vue),它給Vue構(gòu)造函數(shù)擴(kuò)展了一些方法
export function initGlobalAPI (Vue: GlobalAPI) { // config const configDef = {} configDef.get = () => config if (process.env.NODE_ENV !== "production") { configDef.set = () => { util.warn( "Do not replace the Vue.config object, set individual fields instead." ) } } Object.defineProperty(Vue, "config", configDef) Vue.util = util Vue.set = set Vue.delete = del Vue.nextTick = util.nextTick Vue.options = Object.create(null) config._assetTypes.forEach(type => { Vue.options[type + "s"] = Object.create(null) }) util.extend(Vue.options.components, builtInComponents) initUse(Vue) initMixin(Vue) initExtend(Vue) initAssetRegisters(Vue) }
export function initMixin (Vue: GlobalAPI) { Vue.mixin = function (mixin: Object) { Vue.options = mergeOptions(Vue.options, mixin) } }
具體的邏輯后文看。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/92028.html
摘要:微豆一個(gè)使用與重構(gòu)豆瓣的項(xiàng)目。在中的配置代理重新啟動(dòng),打開查看結(jié)果是否與直接請(qǐng)求豆瓣相同。更多請(qǐng)參考豆瓣電影文檔。它采用集中式存儲(chǔ)管理應(yīng)用的所有組件的狀態(tài),并以相應(yīng)的規(guī)則保證狀態(tài)以一種可預(yù)測的方式發(fā)生變化。 微豆 Vdo 一個(gè)使用 Vue.js 與 Material Design 重構(gòu) 豆瓣 的項(xiàng)目。 項(xiàng)目網(wǎng)站 http://vdo.ralfz.com/ GitHub https:...
摘要:特意對(duì)前端學(xué)習(xí)資源做一個(gè)匯總,方便自己學(xué)習(xí)查閱參考,和好友們共同進(jìn)步。 特意對(duì)前端學(xué)習(xí)資源做一個(gè)匯總,方便自己學(xué)習(xí)查閱參考,和好友們共同進(jìn)步。 本以為自己收藏的站點(diǎn)多,可以很快搞定,沒想到一入?yún)R總深似海。還有很多不足&遺漏的地方,歡迎補(bǔ)充。有錯(cuò)誤的地方,還請(qǐng)斧正... 托管: welcome to git,歡迎交流,感謝star 有好友反應(yīng)和斧正,會(huì)及時(shí)更新,平時(shí)業(yè)務(wù)工作時(shí)也會(huì)不定期更...
摘要:今年的月日,的版本正式發(fā)布了,其中核心代碼都進(jìn)行了重寫,于是就專門花時(shí)間,對(duì)的源碼進(jìn)行了學(xué)習(xí)。本篇文章就是源碼學(xué)習(xí)的總結(jié)。實(shí)現(xiàn)了并且將靜態(tài)子樹進(jìn)行了提取,減少界面重繪時(shí)的對(duì)比。的最新源碼可以去獲得。 Vue2.0介紹 從去年9月份了解到Vue后,就被他簡潔的API所吸引。1.0版本正式發(fā)布后,就在業(yè)務(wù)中開始使用,將原先jQuery的功能逐步的進(jìn)行遷移。 今年的10月1日,Vue的2...
摘要:前言前段時(shí)間看了一些的源碼,收獲頗深。介紹是一款非常優(yōu)秀的用于迅速構(gòu)建基于的應(yīng)用工具。不影響閱讀源碼,直接忽略掉。引入的包發(fā)送請(qǐng)求的工具。自定義工具用于詢問開發(fā)者。 前言 前段時(shí)間看了一些vue-cli的源碼,收獲頗深。本想找個(gè)時(shí)間更新一篇文章,但是最近事情比較多,沒有時(shí)間去整理這些東西。趁這兩天閑了下來,便整理了一下,然后跟大家分享一下。如果小伙伴們讀完之后,跟我一樣收獲很多的話,還...
閱讀 2079·2023-04-25 17:48
閱讀 3590·2021-09-22 15:37
閱讀 2941·2021-09-22 15:36
閱讀 6013·2021-09-22 15:06
閱讀 1644·2019-08-30 15:53
閱讀 1434·2019-08-30 15:52
閱讀 718·2019-08-30 13:48
閱讀 1128·2019-08-30 12:44