欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue3的動態(tài)組件是如何工作的

 更新時間:2021年03月18日 09:00:23   作者:阿寶哥  
這篇文章主要介紹了vue3的動態(tài)組件是如何工作的,幫助大家更好的理解和學習使用vue框架,感興趣的朋友可以了解下

在這篇文章中,阿寶哥將介紹 Vue 3 中的內(nèi)置組件 —— component,該組件的作用是渲染一個 “元組件” 為動態(tài)組件。如果你對動態(tài)組件還不了解的話也沒關系,文中阿寶哥會通過具體的示例,來介紹動態(tài)組件的應用。由于動態(tài)組件內(nèi)部與組件注冊之間有一定的聯(lián)系,所以為了讓大家能夠更好地了解動態(tài)組件的內(nèi)部原理,阿寶哥會先介紹組件注冊的相關知識。

一、組件注冊

1.1 全局注冊

在 Vue 3.0 中,通過使用 app 對象的 component 方法,可以很容易地注冊或檢索全局組件。component 方法支持兩個參數(shù):

  • name:組件名稱;
  • component:組件定義對象。

接下來,我們來看一個簡單的示例:

<div id="app">
 <component-a></component-a>
 <component-b></component-b>
 <component-c></component-c>
</div>
<script>
 const { createApp } = Vue
 const app = createApp({}); // ①
 app.component('component-a', { // ②
  template: "<p>我是組件A</p>"
 });
 app.component('component-b', {
  template: "<p>我是組件B</p>"
 });
 app.component('component-c', {
  template: "<p>我是組件C</p>"
 });
 app.mount('#app') // ③
</script>

在以上代碼中,我們通過 app.component 方法注冊了 3 個組件,這些組件都是全局注冊的 。也就是說它們在注冊之后可以用在任何新創(chuàng)建的組件實例的模板中。該示例的代碼比較簡單,主要包含 3 個步驟:創(chuàng)建 App 對象、注冊全局組件和應用掛載。其中創(chuàng)建 App 對象的細節(jié),阿寶哥會在后續(xù)的文章中單獨介紹,下面我們將重點分析其他 2 個步驟,首先我們先來分析注冊全局組件的過程。

1.2 注冊全局組件的過程

在以上示例中,我們使用 app 對象的 component 方法來注冊全局組件:

app.component('component-a', {
 template: "<p>我是組件A</p>"
});

當然,除了注冊全局組件之外,我們也可以注冊局部組件,因為組件中也接受一個 components 的選項:

const app = Vue.createApp({
 components: {
 'component-a': ComponentA,
 'component-b': ComponentB
 }
})

需要注意的是,局部注冊的組件在其子組件中是不可用的。接下來,我們來繼續(xù)介紹注冊全局組件的過程。對于前面的示例來說,我們使用的 app.component 方法被定義在 runtime-core/src/apiCreateApp.ts 文件中:

export function createAppAPI<HostElement>(
 render: RootRenderFunction,
 hydrate?: RootHydrateFunction
): CreateAppFunction<HostElement> {
 return function createApp(rootComponent, rootProps = null) {
 const context = createAppContext()
 const installedPlugins = new Set()
 let isMounted = false

 const app: App = (context.app = {
  // 省略部分代碼
  _context: context,

  // 注冊或檢索全局組件
  component(name: string, component?: Component): any {
  if (__DEV__) {
   validateComponentName(name, context.config)
  }
  if (!component) { // 獲取name對應的組件
   return context.components[name]
  }
  if (__DEV__ && context.components[name]) { // 重復注冊提示
   warn(`Component "${name}" has already been registered in target app.`)
  }
  context.components[name] = component // 注冊全局組件
  return app
  },
 })

 return app
 }
}

當所有的組件都注冊成功之后,它們會被保存到 context 對象的 components 屬性中,具體如下圖所示:

而 createAppContext 函數(shù)被定義在 runtime-core/src/apiCreateApp.ts 文件中:

// packages/runtime-core/src/apiCreateApp.ts
export function createAppContext(): AppContext {
 return {
 app: null as any,
 config: { // 應用的配置對象
  isNativeTag: NO,
  performance: false,
  globalProperties: {},
  optionMergeStrategies: {},
  isCustomElement: NO,
  errorHandler: undefined,
  warnHandler: undefined
 },
 mixins: [], // 保存應用內(nèi)的混入
 components: {}, // 保存全局組件的信息
 directives: {}, // 保存全局指令的信息
 provides: Object.create(null)
 }
}

分析完 app.component 方法之后,是不是覺得組件注冊的過程還是挺簡單的。那么對于已注冊的組件,何時會被使用呢?要回答這個問題,我們就需要分析另一個步驟 —— 應用掛載。

1.3 應用掛載的過程

為了更加直觀地了解應用掛載的過程,阿寶哥利用 Chrome 開發(fā)者工具的 Performance 標簽欄,記錄了應用掛載的主要過程:

在上圖中我們發(fā)現(xiàn)了一個與組件相關的函數(shù) resolveComponent。很明顯,該函數(shù)用于解析組件,且該函數(shù)在 render 方法中會被調(diào)用。在源碼中,我們找到了該函數(shù)的定義:

// packages/runtime-core/src/helpers/resolveAssets.ts
const COMPONENTS = 'components'

export function resolveComponent(name: string): ConcreteComponent | string {
 return resolveAsset(COMPONENTS, name) || name
}

由以上代碼可知,在 resolveComponent 函數(shù)內(nèi)部,會繼續(xù)調(diào)用 resolveAsset 函數(shù)來執(zhí)行具體的解析操作。在分析 resolveAsset 函數(shù)的具體實現(xiàn)之前,我們在 resolveComponent 函數(shù)內(nèi)部加個斷點,來一睹 render 方法的 “芳容”:

在上圖中,我們看到了解析組件的操作,比如 _resolveComponent("component-a")。前面我們已經(jīng)知道在 resolveComponent 函數(shù)內(nèi)部會繼續(xù)調(diào)用 resolveAsset 函數(shù),該函數(shù)的具體實現(xiàn)如下:

// packages/runtime-core/src/helpers/resolveAssets.ts
function resolveAsset(
 type: typeof COMPONENTS | typeof DIRECTIVES,
 name: string,
 warnMissing = true
) {
 const instance = currentRenderingInstance || currentInstance
 if (instance) {
 const Component = instance.type
 // 省略大部分處理邏輯
 const res =
  // 局部注冊
  // check instance[type] first for components with mixin or extends.
  resolve(instance[type] || (Component as ComponentOptions)[type], name) ||
  // 全局注冊
  resolve(instance.appContext[type], name)
 return res
 } else if (__DEV__) {
 warn(
  `resolve${capitalize(type.slice(0, -1))} ` +
  `can only be used in render() or setup().`
 )
 }
}

因為注冊組件時,使用的是全局注冊的方式,所以解析的過程會執(zhí)行 resolve(instance.appContext[type], name) 該語句,其中 resolve 方法的定義如下:

// packages/runtime-core/src/helpers/resolveAssets.ts
function resolve(registry: Record<string, any> | undefined, name: string) {
 return (
 registry &&
 (registry[name] ||
  registry[camelize(name)] ||
  registry[capitalize(camelize(name))])
 )
}

分析完以上的處理流程,我們在解析全局注冊的組件時,會通過 resolve 函數(shù)從應用的上下文對象中獲取已注冊的組件對象。

(function anonymous() {
 const _Vue = Vue

 return function render(_ctx, _cache) {
  with (_ctx) {
   const {resolveComponent: _resolveComponent, createVNode: _createVNode, 
   Fragment: _Fragment, openBlock: _openBlock, createBlock: _createBlock} = _Vue

   const _component_component_a = _resolveComponent("component-a")
   const _component_component_b = _resolveComponent("component-b")
   const _component_component_c = _resolveComponent("component-c")

   return (_openBlock(),
   _createBlock(_Fragment, null, [
    _createVNode(_component_component_a), 
    _createVNode(_component_component_b), 
    _createVNode(_component_component_c)], 64))
  }
 }
})

在獲取到組件之后,會通過 _createVNode 函數(shù)創(chuàng)建 VNode 節(jié)點。然而,關于 VNode 是如何被渲染成真實的 DOM 元素這個過程,阿寶哥就不繼續(xù)往下介紹了,后續(xù)會寫專門的文章來單獨介紹這塊的內(nèi)容,接下來我們將介紹動態(tài)組件的相關內(nèi)容。

二、動態(tài)組件

在 Vue 3 中為我們提供了一個 component 內(nèi)置組件,該組件可以渲染一個 “元組件” 為動態(tài)組件。根據(jù) is 的值,來決定哪個組件被渲染。如果 is 的值是一個字符串,它既可以是 HTML 標簽名稱也可以是組件名稱。對應的使用示例如下:

<!-- 動態(tài)組件由 vm 實例的 `componentId` property 控制 -->
<component :is="componentId"></component>

<!-- 也能夠渲染注冊過的組件或 prop 傳入的組件-->
<component :is="$options.components.child"></component>

<!-- 可以通過字符串引用組件 -->
<component :is="condition ? 'FooComponent' : 'BarComponent'"></component>

<!-- 可以用來渲染原生 HTML 元素 -->
<component :is="href ? 'a' : 'span'"></component>

2.1 綁定字符串類型

介紹完 component 內(nèi)置組件,我們來舉個簡單的示例:

<div id="app">
 <button
  v-for="tab in tabs"
  :key="tab"
  @click="currentTab = 'tab-' + tab.toLowerCase()">
  {{ tab }}
 </button>
 <component :is="currentTab"></component>
</div>
<script>
 const { createApp } = Vue
 const tabs = ['Home', 'My']
 const app = createApp({
  data() {
  return {
   tabs,
   currentTab: 'tab-' + tabs[0].toLowerCase()
  }
  },
 });
 app.component('tab-home', {
  template: `<div style="border: 1px solid;">Home component</div>`
 })
 app.component('tab-my', {
  template: `<div style="border: 1px solid;">My component</div>`
 })
 app.mount('#app')
</script>

在以上代碼中,我們通過 app.component 方法全局注冊了 tab-home 和 tab-my 2 個組件。此外,在模板中,我們使用了 component 內(nèi)置組件,該組件的 is 屬性綁定了 data 對象的 currentTab 屬性,該屬性的類型是字符串。當用戶點擊 Tab 按鈕時,會動態(tài)更新 currentTab 的值,從而實現(xiàn)動態(tài)切換組件的功能。以上示例成功運行后的結果如下圖所示:

看到這里你會不會覺得 component 內(nèi)置組件挺神奇的,感興趣的小伙伴繼續(xù)跟阿寶哥一起,來揭開它背后的秘密。下面我們利用 Vue 3 Template Explorer 在線工具,看一下 <component :is="currentTab"></component> 模板編譯的結果:

const _Vue = Vue

return function render(_ctx, _cache, $props, $setup, $data, $options) {
 with (_ctx) {
 const { resolveDynamicComponent: _resolveDynamicComponent, openBlock: _openBlock, 
  createBlock: _createBlock } = _Vue
 return (_openBlock(), _createBlock(_resolveDynamicComponent(currentTab)))
 }
}

通過觀察生成的渲染函數(shù),我們發(fā)現(xiàn)了一個 resolveDynamicComponent 的函數(shù),根據(jù)該函數(shù)的名稱,我們可以知道它用于解析動態(tài)組件,它被定義在 runtime-core/src/helpers/resolveAssets.ts 文件中,具體實現(xiàn)如下所示:

// packages/runtime-core/src/helpers/resolveAssets.ts
export function resolveDynamicComponent(component: unknown): VNodeTypes {
 if (isString(component)) {
 return resolveAsset(COMPONENTS, component, false) || component
 } else {
 // invalid types will fallthrough to createVNode and raise warning
 return (component || NULL_DYNAMIC_COMPONENT) as any
 }
}

在 resolveDynamicComponent 函數(shù)內(nèi)部,若 component 參數(shù)是字符串類型,則會調(diào)用前面介紹的 resolveAsset 方法來解析組件:

// packages/runtime-core/src/helpers/resolveAssets.ts
function resolveAsset(
 type: typeof COMPONENTS | typeof DIRECTIVES,
 name: string,
 warnMissing = true
) {
 const instance = currentRenderingInstance || currentInstance
 if (instance) {
 const Component = instance.type
 // 省略大部分處理邏輯
 const res =
  // 局部注冊
  // check instance[type] first for components with mixin or extends.
  resolve(instance[type] || (Component as ComponentOptions)[type], name) ||
  // 全局注冊
  resolve(instance.appContext[type], name)
 return res
 }
}

對于前面的示例來說,組件是全局注冊的,所以解析過程中會從 app.context 上下文對象的 components 屬性中獲取對應的組件。當 currentTab 發(fā)生變化時,resolveAsset 函數(shù)就會返回不同的組件,從而實現(xiàn)動態(tài)組件的功能。此外,如果 resolveAsset 函數(shù)獲取不到對應的組件,則會返回當前 component 參數(shù)的值。比如 resolveDynamicComponent('div') 將返回 'div' 字符串。

// packages/runtime-core/src/helpers/resolveAssets.ts
export const NULL_DYNAMIC_COMPONENT = Symbol()

export function resolveDynamicComponent(component: unknown): VNodeTypes {
 if (isString(component)) {
 return resolveAsset(COMPONENTS, component, false) || component
 } else {
 return (component || NULL_DYNAMIC_COMPONENT) as any
 }
}

細心的小伙伴可能也注意到了,在 resolveDynamicComponent 函數(shù)內(nèi)部,如果 component 參數(shù)非字符串類型,則會返回 component || NULL_DYNAMIC_COMPONENT 這行語句的執(zhí)行結果,其中 NULL_DYNAMIC_COMPONENT 的值是一個 Symbol 對象。

2.2 綁定對象類型

了解完上述的內(nèi)容之后,我們來重新實現(xiàn)一下前面動態(tài) Tab 的功能:

<div id="app">
 <button
  v-for="tab in tabs"
  :key="tab"
  @click="currentTab = tab">
  {{ tab.name }}
 </button>
 <component :is="currentTab.component"></component>
</div>
<script>
 const { createApp } = Vue
 const tabs = [
  {
  name: 'Home',
  component: {
   template: `<div style="border: 1px solid;">Home component</div>`
  }
  },
  {
  name: 'My',
  component: {
   template: `<div style="border: 1px solid;">My component</div>`
  }
 }]
 const app = createApp({
  data() {
  return {
   tabs,
   currentTab: tabs[0]
  }
  },
 });
 app.mount('#app')
</script>

在以上示例中,component 內(nèi)置組件的 is 屬性綁定了 currentTab 對象的 component 屬性,該屬性的值是一個對象。當用戶點擊 Tab 按鈕時,會動態(tài)更新 currentTab 的值,導致 currentTab.component 的值也發(fā)生變化,從而實現(xiàn)動態(tài)切換組件的功能。需要注意的是,每次切換的時候,都會重新創(chuàng)建動態(tài)組件。但在某些場景下,你會希望保持這些組件的狀態(tài),以避免反復重渲染導致的性能問題。

對于這個問題,我們可以使用 Vue 3 的另一個內(nèi)置組件 —— keep-alive,將動態(tài)組件包裹起來。比如:

<keep-alive>
 <component :is="currentTab"></component>
</keep-alive> 

keep-alive 內(nèi)置組件的主要作用是用于保留組件狀態(tài)或避免重新渲染,使用它包裹動態(tài)組件時,會緩存不活動的組件實例,而不是銷毀它們。關于 keep-alive 組件的內(nèi)部工作原理,阿寶哥后面會寫專門的文章來分析它,對它感興趣的小伙伴記得關注 Vue 3.0 進階 系列喲。

三、阿寶哥有話說

3.1 除了 component 內(nèi)置組件外,還有哪些內(nèi)置組件?

在 Vue 3 中除了本文介紹的 component 和 keep-alive 內(nèi)置組件之外,還提供了 transition、transition-group 、slot 和 teleport 內(nèi)置組件。

3.2 注冊全局組件與局部組件有什么區(qū)別?

注冊全局組件

const { createApp, h } = Vue
const app = createApp({});
app.component('component-a', {
 template: "<p>我是組件A</p>"
});

使用 app.component 方法注冊的全局的組件,被保存到 app 應用對象的上下文對象中。而通過組件對象 components 屬性注冊的局部組件是保存在組件實例中。

注冊局部組件

const { createApp, h } = Vue
const app = createApp({});
const componentA = () => h('div', '我是組件A');
app.component('component-b', {
 components: {
 'component-a': componentA
 },
 template: `<div>
 我是組件B,內(nèi)部使用了組件A
 <component-a></component-a> 
 </div>`
})

解析全局注冊和局部注冊的組件

// packages/runtime-core/src/helpers/resolveAssets.ts
function resolveAsset(
 type: typeof COMPONENTS | typeof DIRECTIVES,
 name: string,
 warnMissing = true
) {
 const instance = currentRenderingInstance || currentInstance
 if (instance) {
 const Component = instance.type
 // 省略大部分處理邏輯
 const res =
  // 局部注冊
  // check instance[type] first for components with mixin or extends.
  resolve(instance[type] || (Component as ComponentOptions)[type], name) ||
  // 全局注冊
  resolve(instance.appContext[type], name)
 return res
 }
}

3.3 動態(tài)組件能否綁定其他屬性?

component 內(nèi)置組件除了支持 is 綁定之外,也支持其他屬性綁定和事件綁定:

<component :is="currentTab.component" :name="name" @click="sayHi"></component>

這里阿寶哥使用 Vue 3 Template Explorer 這個在線工具,來編譯上述的模板:

const _Vue = Vue
return function render(_ctx, _cache, $props, $setup, $data, $options) {
 with (_ctx) {
 const { resolveDynamicComponent: _resolveDynamicComponent, 
  openBlock: _openBlock, createBlock: _createBlock } = _Vue

 return (_openBlock(), _createBlock(_resolveDynamicComponent(currentTab.component), {
  name: name,
  onClick: sayHi
 }, null, 8 /* PROPS */, ["name", "onClick"]))
 }
}

觀察以上的渲染函數(shù)可知,除了 is 綁定會被轉換為 _resolveDynamicComponent 函數(shù)調(diào)用之外,其他的屬性綁定都會被正常解析為 props 對象。

以上就是vue3的動態(tài)組件是如何工作的的詳細內(nèi)容,更多關于vue3動態(tài)組件的資料請關注腳本之家其它相關文章!

相關文章

  • 關于element-ui的隱藏組件el-scrollbar的使用

    關于element-ui的隱藏組件el-scrollbar的使用

    這篇文章主要介紹了關于element-ui的隱藏組件el-scrollbar的使用,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-05-05
  • vue watch自動檢測數(shù)據(jù)變化實時渲染的方法

    vue watch自動檢測數(shù)據(jù)變化實時渲染的方法

    本篇文章主要介紹了vue watch自動檢測數(shù)據(jù)變化實時渲染的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-01-01
  • vue+Element-ui實現(xiàn)分頁效果

    vue+Element-ui實現(xiàn)分頁效果

    這篇文章主要為大家詳細介紹了vue+Element-ui實現(xiàn)分頁效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-11-11
  • vue-cli腳手架搭建的項目去除eslint驗證的方法

    vue-cli腳手架搭建的項目去除eslint驗證的方法

    今天小編就為大家分享一篇vue-cli腳手架搭建的項目去除eslint驗證的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-09-09
  • 一文詳解Pinia和Vuex與兩個Vue狀態(tài)管理模式

    一文詳解Pinia和Vuex與兩個Vue狀態(tài)管理模式

    這篇文章主要介紹了一文詳解Pinia和Vuex與兩個Vue狀態(tài)管理模式,Pinia和Vuex一樣都是是vue的全局狀態(tài)管理器。其實Pinia就是Vuex5,只不過為了尊重原作者的貢獻就沿用了這個看起來很甜的名字Pinia
    2022-08-08
  • VUE3 加載自定義SVG文件的詳細步驟

    VUE3 加載自定義SVG文件的詳細步驟

    要在 Vue 項目中使用 svg-sprite-loader 來管理 SVG 圖標,需要執(zhí)行相應的步驟,接下來通過本文給大家介紹VUE3 加載自定義SVG文件的詳細步驟,感興趣的朋友一起看看吧
    2024-01-01
  • 使用webpack手動搭建vue項目的步驟

    使用webpack手動搭建vue項目的步驟

    這篇文章主要介紹了從零使用webpack手動搭建vue項目的步驟,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-03-03
  • vue router返回到指定的路由的場景分析

    vue router返回到指定的路由的場景分析

    這篇文章主要介紹了vue router返回到指定的路由的場景分析,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-11-11
  • 使用vNode實現(xiàn)給列表字段打標簽

    使用vNode實現(xiàn)給列表字段打標簽

    這篇文章主要為大家介紹了使用vNode實現(xiàn)給列表字段打標簽示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-09-09
  • Vue.js中該如何自己維護路由跳轉記錄

    Vue.js中該如何自己維護路由跳轉記錄

    這篇文章主要給大家介紹了關于Vue.js中該如何自己維護路由跳轉記錄的相關資料,文中通過示例代碼介紹的非常詳細,對大家學習或者使用Vue.js具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧
    2019-05-05

最新評論