淺談vue中.vue文件解析流程
我們平時寫的 .vue 文件稱為 SFC(Single File Components),本文介紹將 SFC 解析為 descriptor 這一過程在 vue 中是如何執(zhí)行的。
vue 提供了一個 compiler.parseComponent(file, [options]) 方法,來將 .vue 文件解析成一個 descriptor:
// an object format describing a single-file component. declare type SFCDescriptor = { template: ?SFCBlock; script: ?SFCBlock; styles: Array<SFCBlock>; customBlocks: Array<SFCBlock>; };
文件入口
解析 sfc 文件的入口在 src/sfc/parser.js 中,該文件 export 了 parseComponent 方法, parseComponent 方法用來對單文件組件進(jìn)行編譯。
接下來我們看看 parseComponent 方法都做了哪些事情。
parseComponent 方法
function start(tag, attrs, unary, start, end,){ } function end(tag, start, end){ } parseHTML(content, { start, end })
parseComponent 方法中定義了 start``end 兩個函數(shù),之后調(diào)用了 parseHTML 方法來對 .vue 文件內(nèi)容踐行編譯。
那么這個 parseHTML 方法是做啥的呢?
parseHTML 方法
該方法看名字就知道是一個 html-parser,可以簡單理解為,解析到每個起始標(biāo)簽時,調(diào)用 option 中的 start;每個標(biāo)簽結(jié)束時,調(diào)用 option 中的 end。
對應(yīng)到這里,就是分別調(diào)用 parseComponent 方法中定義的 start 和 end 函數(shù)。
在 parseComponent 中維護(hù)一個 depth 變量,在 start 中將 depth++ ,在 end 中 depth-- 。那么,每個 depth === 0 的標(biāo)簽就是我們需要獲取的信息,包含 template、script、style 以及一些自定義標(biāo)簽。
start
每當(dāng)遇到一個起始標(biāo)簽時,執(zhí)行 start 函數(shù)。
1、記錄下 currentBlock。
每個 currentBlock 包含以下內(nèi)容:
declare type SFCBlock = { type: string; content: string; start?: number; end?: number; lang?: string; src?: string; scoped?: boolean; module?: string | boolean; };
2、根據(jù) tag 名稱,將 currentBlock 對象在返回結(jié)果對象中。
返回結(jié)果對象定義為 sfc,如果tag不是 script,style,template 中的任一個,就放在 sfc.customBlocks 中。如果是style,就放在 sfc.styles 中。script 和 template 則直接放在 sfc 下。
if (isSpecialTag(tag)) { checkAttrs(currentBlock, attrs) if (tag === 'style') { sfc.styles.push(currentBlock) } else { sfc[tag] = currentBlock } } else { // custom blocks sfc.customBlocks.push(currentBlock) }
end
每當(dāng)遇到一個結(jié)束標(biāo)簽時,執(zhí)行 end 函數(shù)。
1、如果當(dāng)前是第一層標(biāo)簽(depth === 1),并且 currentBlock 變量存在,那么取出這部分text,放在 currentBlock.content 中。
if (depth === 1 && currentBlock) { currentBlock.end = start let text = deindent(content.slice(currentBlock.start, currentBlock.end)) // pad content so that linters and pre-processors can output correct // line numbers in errors and warnings if (currentBlock.type !== 'template' && options.pad) { text = padContent(currentBlock, options.pad) + text } currentBlock.content = text currentBlock = null }
2、depth-- 。
得到 descriptor
在將 .vue 整個遍歷一遍后,得到的 sfc 對象即為我們需要的結(jié)果。
生成 .js ?
compiler.parseComponent(file, [options]) 得到的只是一個組件的 SFCDescriptor ,最終編譯成.js 文件是交給 vue-loader 等庫來做的。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue+vuex+axio從后臺獲取數(shù)據(jù)存入vuex實(shí)現(xiàn)組件之間共享數(shù)據(jù)
這篇文章主要介紹了vue+vuex+axio從后臺獲取數(shù)據(jù)存入vuex,組件之間共享數(shù)據(jù),非常具有實(shí)用價值,需要的朋友可以參考下2017-04-04使用WebSocket+SpringBoot+Vue搭建簡易網(wǎng)頁聊天室的實(shí)現(xiàn)代碼
這篇文章主要介紹了使用WebSocket+SpringBoot+Vue搭建簡易網(wǎng)頁聊天室的實(shí)現(xiàn),具體的步驟如下,需要的朋友可以參考下2023-03-03nuxt 實(shí)現(xiàn)在其它js文件中使用store的方式
這篇文章主要介紹了nuxt 實(shí)現(xiàn)在其它js文件中使用store的方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-11-11vue+animation動畫實(shí)現(xiàn)跑馬燈效果
這篇文章主要為大家詳細(xì)介紹了vue+animation動畫實(shí)現(xiàn)跑馬燈效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-04-04Vue中使用iframe踩坑問題記錄 iframe+postMessage
這篇文章主要介紹了Vue中使用iframe踩坑問題記錄 iframe+postMessage,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-09-09