最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Vue高級用法實例教程之動態(tài)組件

2023-06-27 03:26 作者:波叔8866  | 我要投稿

動態(tài)組件我相信大部分在開發(fā)的過程中都會用到,當(dāng)我們需要在不同的組件之間進行狀態(tài)切換時,動態(tài)組件可以很好的滿足我們的需求,其中的核心是component標(biāo)簽和is屬性的使用。

基礎(chǔ)描述

1
2
3
4
5
6
7
8
// vue
<div id="app">
??<button @click="changeTabs('child1')">child1</button>
??<button @click="changeTabs('child2')">child2</button>
??<button @click="changeTabs('child3')">child3</button>
??<component :is="chooseTabs">
??</component>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// js
var child1 = {
??template: '<div>content1</div>',
}
var child2 = {
??template: '<div>content2</div>'
}
var child3 = {
??template: '<div>content3</div>'
}
var vm = new Vue({
??el: '#app',
??components: {
????child1,
????child2,
????child3
??},
??methods: {
????changeTabs(tab) {
??????this.chooseTabs = tab;
????}
??}
})

AST解析

<component>的解讀和前面幾篇內(nèi)容一致,會從AST解析階段說起,過程也不會專注每一個細(xì)節(jié),而是把和以往處理方式不同的地方特別說明。針對動態(tài)組件解析的差異,集中在processComponent上,由于標(biāo)簽上is屬性的存在,它會在最終的ast樹上打上component屬性的標(biāo)志。

1
2
3
4
5
6
7
8
9
10
11
12
//? 針對動態(tài)組件的解析
function processComponent (el) {
??var binding;
??// 拿到is屬性所對應(yīng)的值
??if ((binding = getBindingAttr(el, 'is'))) {
????// ast樹上多了component的屬性
????el.component = binding;
??}
??if (getAndRemoveAttr(el, 'inline-template') != null) {
????el.inlineTemplate = true;
??}
}

render函數(shù)

有了ast樹,接下來是根據(jù)ast樹生成可執(zhí)行的render函數(shù),由于有component屬性,render函數(shù)的產(chǎn)生過程會走genComponent分支。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// render函數(shù)生成函數(shù)
var code = generate(ast, options);
?
// generate函數(shù)的實現(xiàn)
function generate (ast,options) {
??var state = new CodegenState(options);
??var code = ast ? genElement(ast, state) : '_c("div")';
??return {
????render: ("with(this){return " + code + "}"),
????staticRenderFns: state.staticRenderFns
??}
}
?
function genElement(el, state) {
??···
??var code;
??// 動態(tài)組件分支
??if (el.component) {
????code = genComponent(el.component, el, state);
??}
}

針對動態(tài)組件的處理邏輯其實很簡單,當(dāng)沒有內(nèi)聯(lián)模板標(biāo)志時(后面會講),拿到后續(xù)的子節(jié)點進行拼接,和普通組件唯一的區(qū)別在于,_c的第一個參數(shù)不再是一個指定的字符串,而是一個代表組件的變量。

1
2
3
4
5
6
7
8
9
10
11
12
// 針對動態(tài)組件的處理
??function genComponent (
????componentName,
????el,
????state
??) {
????// 擁有inlineTemplate屬性時,children為null
????var children = el.inlineTemplate ? null : genChildren(el, state, true);
?????
????return ("_c(" + componentName + "," + (genData$2(el, state)) +
????(children ? ("," + children) : '') + ")")
??}

普通組件和動態(tài)組件的對比

普通組件的render函數(shù)

1
"with(this){return _c('div',{attrs:{"id":"app"}},[_c('child1',[_v(_s(test))])],1)}"

動態(tài)組件的render函數(shù)

1
"with(this){return _c('div',{attrs:{"id":"app"}},[_c(chooseTabs,{tag:"component"})],1)}"

簡單的總結(jié),動態(tài)組件和普通組件的區(qū)別在于:

  1. ast階段新增了component屬性,這是動態(tài)組件的標(biāo)志

  2. 產(chǎn)生render函數(shù)階段由于component屬性的存在,會執(zhí)行g(shù)enComponent分支,genComponent會針對動態(tài)組件的執(zhí)行函數(shù)進行特殊的處理,和普通組件不同的是,_c的第一個參數(shù)不再是不變的字符串,而是指定的組件名變量。

  3. render到vnode階段和普通組件的流程相同,只是字符串換成了變量,并有{ tag: 'component' }的data屬性。例子中chooseTabs此時取的是child1。

工廠函數(shù)形式的動態(tài)組件

還可以使用如下工廠函數(shù)形式的動態(tài)組件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const AsyncComponent = () => ({
?
??// 需要加載的組件 (應(yīng)該是一個 `Promise` 對象)
?
??component: import('./MyComponent.vue'),
?
??// 異步組件加載時使用的組件
?
??loading: LoadingComponent,
?
??// 加載失敗時使用的組件
?
??error: ErrorComponent,
?
??// 展示加載時組件的延時時間。默認(rèn)值是 200 (毫秒)
?
??delay: 200,
?
??// 如果提供了超時時間且組件加載也超時了,
?
??// 則使用加載失敗時使用的組件。默認(rèn)值是:`Infinity`
?
??timeout: 3000
?
});
?
?
?
components: {
?
??AsyncComponent,
?
},

總結(jié)


Vue高級用法實例教程之動態(tài)組件的評論 (共 條)

分享到微博請遵守國家法律
德清县| 张家川| 永丰县| 岱山县| 伊金霍洛旗| 图木舒克市| 黎川县| 清河县| 类乌齐县| 潼南县| 丹棱县| 萨嘎县| SHOW| 谢通门县| 锦屏县| 贵州省| 康定县| 三河市| 饶河县| 忻州市| 武冈市| 冀州市| 方城县| 永靖县| 龙海市| 保德县| 应城市| 图木舒克市| 左权县| 濮阳县| 安西县| 朝阳县| 随州市| 靖远县| 鲁山县| 天水市| 朝阳区| 承德县| 施甸县| 抚松县| 濉溪县|