mini-vue渲染的簡易實(shí)現(xiàn)
前言
目前的主流框架Vue、React 都是通過 Virtual Dom(虛擬Dom)來實(shí)現(xiàn)的,通過Virtual Dom技術(shù)提高頁面的渲染效率。Vue中我們通過在 template 模板中編寫html代碼,React中我們通過在內(nèi)部的一個 render 函數(shù)里編寫html代碼,這個函數(shù)通過 jsx 編譯后,實(shí)際會輸出一個h函數(shù),也就是我們的 Virtual Dom(虛擬Dom),下面簡單來實(shí)現(xiàn)一個虛擬dom渲染真實(shí)dom,以及更新的方法。
目標(biāo)
主要實(shí)現(xiàn)以下三個功能:
- 通過h函數(shù)返回Vnodes;
- 通過 mount 函數(shù)將 虛擬dom 掛載到真實(shí)節(jié)點(diǎn)上;
- 通過 patch 函數(shù)通過 newVnodes 與 oldVnodes比較來實(shí)現(xiàn)dom的更新;
第一步:
在body標(biāo)簽內(nèi)創(chuàng)建一個id為app的節(jié)點(diǎn),后面會將虛擬節(jié)點(diǎn)掛載到這個節(jié)點(diǎn)上,而renderer.js用來實(shí)現(xiàn)上面三個功能。
<body> <div id="app"></div> <script src="./renderer.js"></script> </body>
第二步:
編寫h函數(shù),用來返回tag(標(biāo)簽元素)、props(屬性對象)、children(子節(jié)點(diǎn)),簡單來說虛擬Dom就是一個普通javaScript對象。
// renderer.js
const h = (tag, props, children) => {
return {
tag,
props,
children
}
}
那么通過這個h函數(shù),我們簡單來看看下面一段代碼會輸出什么?
const vdom = h("div", {class: "header"}, [
h("h2", null, "Hello World"),
h("h2", {id: 0}, h("span", null, "啦啦啦啦")) // 當(dāng)props沒有值,必須傳一個null,不能不傳
]);
console.log(vdom);
由下圖可以看出,通過h函數(shù),給我們返回了一個javaScript對象,這個便是 Virtual Dom(虛擬Dom),形成樹狀節(jié)點(diǎn)。

那么我們拿到這個vnodes,如何掛載到真實(shí)節(jié)點(diǎn)上呢?下面我們來看看第三步
第三步:
我們先創(chuàng)建一個 mount 函數(shù),需要傳入兩個參數(shù),第一個是我們剛剛通過h函數(shù)返回的vnodes,第二個參數(shù)是我們需要將這些vnode掛載到哪個節(jié)點(diǎn)上,接下來看代碼:
const mount = (vnodes, app) => {
// 通過vnodes里面的tag值,比如("div", "h2"),創(chuàng)建一個節(jié)點(diǎn)
// 同樣在vnodes對象里保存一份真實(shí)dom,方便以后進(jìn)行更新,新增等操作
const el = vnodes.el = document.createElement(vnodes.tag);
// 拿到這個節(jié)點(diǎn)后,我們通過判斷props值,進(jìn)行添加屬性
if (vnodes.props) {
for (let key in vnodes.props) {
// 這兒通過拿到props中key值后,在做判斷
let value = vnodes.props[key];
if (key.startsWith('on')) {
// 比如用戶寫了一個onClick="changeData",處理為監(jiān)聽函數(shù)的事件
el.addEventListener(key.slice(2).toLowerCase(), value)
} else {
el.setAttribute(key, value)
}
// 這下面還有些判斷,比如指令啊v-if等等,進(jìn)行邊界化處理
}
}
// 處理完props后,最后是Children節(jié)點(diǎn)
if (vnodes.children) {
if (typeof vnodes.children === 'string') {
// 如果這兒是個字符串類型,那么就可以直接添加到節(jié)點(diǎn)中去
el.textContent = vnodes.children
} else {
// 這種情況為數(shù)組類型,含有子節(jié)點(diǎn),通過遍歷,再生成子節(jié)點(diǎn)
vnodes.children.forEach(vnode => {
// 通過遞歸,再次將子節(jié)點(diǎn)掛載到當(dāng)前節(jié)點(diǎn)上去
mount(vnode, el)
})
}
}
// 最終將這個真實(shí)節(jié)點(diǎn)掛載到我們傳入的app節(jié)點(diǎn)中去
app.appendChild(el);
}
const app = document.querySelector("#app")
mount(vdom, app)
我們來看看通過mount函數(shù)掛載的實(shí)際效果:

那么到這里,我們就已經(jīng)實(shí)現(xiàn)了通過虛擬dom來創(chuàng)建真實(shí)dom了,那在vue當(dāng)中是如何對這些dom進(jìn)行更新操作呢,接下來我們再創(chuàng)建一個 patch函數(shù)(更新):
第四步:
通過patch函數(shù),我們需要傳入兩個參數(shù)(vnodes1、vnodes2),分別是新的虛擬dom和舊的虛擬dom,通過比較新舊虛擬dom,來指定更新哪些節(jié)點(diǎn)。(這兒不考慮key值,需要參考key值可以查看鏈接:http://www.dbjr.com.cn/article/219078.htm)
// patch函數(shù) n1: 舊節(jié)點(diǎn)、 n2:新節(jié)點(diǎn)
// 在vue源碼中,舊vnode,新vnode分別用n1, n2表示
const patch = (n1, n2) => {
// 在上面我們通過mount函數(shù)給n2添加了節(jié)點(diǎn)屬性el,綁定到n2上
const el = n2.el = n1.el
// 首先,還是從兩個中的tag入手
if (n1.tag == n2.tag) {
// n1、n2的tag相同,再對比props
const n1Props = n1.props || {};
const n2Props = n2.props || {};
// 分別取到n1,n2中的props,進(jìn)行比較
for (let key in n2Props) {
// 取出n2中所有key,判斷n2的key值和n1key值是否相同
const n1Value = n1Props[key] || '';
const n2Value = n2Props[key] || '';
if (n1Value !== n2Value) {
if (key.startsWith('on')) {
// 比如用戶寫了一個onClick="changeData",處理為監(jiān)聽函數(shù)的事件
el.addEventListener(key.slice(2).toLowerCase(), n2Value)
} else {
el.setAttribute(key, n2Value)
}
}
// 相同則不作處理
}
for (let key in n1Props) {
const oldValue = n1Props[key];
if (!(key in n2Props)) {
if (key.startsWith('on')) {
el.removeEventListener(key.slice(2).toLowerCase(), oldValue)
} else {
el.removeAttribute(key)
}
}
}
} else {
// tag不同,拿到n1的父節(jié)點(diǎn)
const n1Parent = n1.el.parentElement;
// 通過removeChild將舊節(jié)點(diǎn)從父節(jié)點(diǎn)中移除,然后將n2掛載到父節(jié)點(diǎn)中
n1Parent.removeChild(n1.el); //n1.el是通過mount函數(shù)往對象里添加的真實(shí)dom節(jié)點(diǎn)
mount(n2, n1Parent)
}
// 最后處理children,相對于來說復(fù)雜些
// children可以為字符串也可以為數(shù)組,那么先看字符串時怎么處理
const n1Children = n1.children || [];
const n2Children = n2.children || [];
if (typeof n2Children === "string") {
// 如果新節(jié)點(diǎn)內(nèi)容為字符串,直接使用innerhtml進(jìn)行替換
el.innerHtml = n2Children;
} else {
// 下面情況是n2.children為數(shù)組情況時
if (typeof n1.children === "string") {
// n1.children為字符串,n2.children為數(shù)組
el.innerHtml = ''; // 先將節(jié)點(diǎn)內(nèi)容情況,再講新的內(nèi)容添加進(jìn)去
mount(n2.children, el)
} else {
// 兩種都為數(shù)組類型時,這兒不考慮key值
const minLength = Math.min(n1Children.length, n2Children.length);
for (let i = 0 ; i < minLength ; i++) {
patch(n1Children[i], n2Children[i]);
}
if(n2Children.length > n1Children.length) {
n2Children.slice(minLength).forEach(item => {
mount(item, el)
})
}
if(n2Children.length < n1Children.length) {
n1Children.slice(minLength).forEach(item => {
el.removeChild(item.el)
})
}
}
}
}
上面簡單的實(shí)現(xiàn)了patch的作用,其實(shí)就是我們說的diff算法(當(dāng)然這兒沒有考慮key值的情況,只能兩個依次比較),同一層級進(jìn)行比較。現(xiàn)在模擬演示一下,看看是否能更新成功:
const vdom = h("div", {class: "header"}, [
h("h2", null, "Hello World"),
h("h2", {id: 0}, [h("span", null, "啦啦啦啦")]) // 當(dāng)props沒有值,必須傳一個null,不能不傳
]);
const app = document.querySelector("#app")
mount(vdom, app)
setTimeout(()=> { // 3秒后向patch傳入新舊Vnodes
const vdom1 = h("div", {class: "header"}, [
h("h3", null, "Hello World"),
h("span", null, "哈哈哈")
])
patch(vdom, vdom1)
},3000)
通過下圖,我們可以看到已經(jīng)簡單的實(shí)現(xiàn)了虛擬dom更新節(jié)點(diǎn)。

總結(jié)
簡單的實(shí)現(xiàn)了下虛擬Dom生成真實(shí)節(jié)點(diǎn),然后通過patch進(jìn)行更新。再去看看源碼,就能更好的理解vue的渲染器是如何實(shí)現(xiàn)的了。
到此這篇關(guān)于mini-vue渲染的簡易實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)mini-vue渲染內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Vue頁面跳轉(zhuǎn)動畫效果的實(shí)現(xiàn)方法
百度了好久都沒辦法實(shí)現(xiàn)vue中一個頁面跳到另一個頁面,甚至到google上搜索也是沒辦法的,最終還是找了高人親自指導(dǎo),所以下面這篇文章主要給大家介紹了關(guān)于Vue頁面跳轉(zhuǎn)動畫效果的實(shí)現(xiàn)方法,需要的朋友可以參考下2018-09-09
vue-router之實(shí)現(xiàn)導(dǎo)航切換過渡動畫效果
今天小編就為大家分享一篇vue-router之實(shí)現(xiàn)導(dǎo)航切換過渡動畫效果,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10
Vue3使用hook封裝媒體查詢和事件監(jiān)聽的代碼示例
這篇文章主要給大家詳細(xì)介紹Vue3如何使用hook封裝媒體查詢和事件監(jiān)聽,使得Vue的開發(fā)更加絲滑,文中通過代碼示例給大家介紹的非常詳細(xì),感興趣的同學(xué)跟著小編一起來學(xué)習(xí)吧2023-07-07
vue3 elementPlus 表格實(shí)現(xiàn)行列拖拽及列檢索功能(完整代碼)
本文通過實(shí)例代碼給大家介紹vue3 elementPlus 表格實(shí)現(xiàn)行列拖拽及列檢索功能,代碼簡單易懂,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友參考下吧2023-10-10
關(guān)于el-table表格組件中插槽scope.row的使用方式
這篇文章主要介紹了關(guān)于el-table表格組件中插槽scope.row的使用方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-08-08
vue的異步數(shù)據(jù)更新機(jī)制與$nextTick用法解讀
這篇文章主要介紹了vue的異步數(shù)據(jù)更新機(jī)制與$nextTick用法解讀,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-03-03

