溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Angular怎么使用ng-content進行內(nèi)容投影

發(fā)布時間:2021-07-02 11:06:08 來源:億速云 閱讀:173 作者:小新 欄目:web開發(fā)

小編給大家分享一下Angular怎么使用ng-content進行內(nèi)容投影,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

如何使用 ng-content 進行內(nèi)容投影,來創(chuàng)建靈活的可復(fù)用組件。

ng-content

ng-content 元素是一個用來插入外部或者動態(tài)內(nèi)容的占位符。父組件將外部內(nèi)容傳遞給子組件,當 Angular 解析模板時,就會在子組件模板中 ng-content 出現(xiàn)的地方插入外部內(nèi)容。

我們可以使用內(nèi)容投影來創(chuàng)建可重用的組件。這些組件有相似的邏輯和布局,并且可以在許多地方使用。一般我們在封裝一些公共組件的時候經(jīng)常會用到?!鞠嚓P(guān)教程推薦:《angular教程》】

不使用內(nèi)容投影

為了理解為什么要使用 ng-content 進行內(nèi)容投影,首先讓我們來創(chuàng)建一個很常見的 button 組件。

btn.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-btn',
  templateUrl: './btn.component.html',
  styleUrls: ['./btn.component.scss'],
})
export class BtnComponent {
  constructor() {}

  onClick($event: any) {
    console.log($event);
  }
}

btn.component.html

<button (click)=onClick($event)>
  Click Me
</button>

在這個組件中,button 的文本始終是 Click Me,如果我們想傳遞不同的文本進來呢?可能你會想到最常使用的 @Input 裝飾器,但是如果我們不只是想傳文本進來,而是傳一段 html 進來呢?這個時候就需要用到這篇文章的主角:ng-content。

單插槽內(nèi)容投影

內(nèi)容投影的最基本形式是單插槽內(nèi)容投影。單插槽內(nèi)容投影是指創(chuàng)建一個組件,我們可以在其中投影一個組件。

要創(chuàng)建使用單插槽內(nèi)容投影的組件,我們只需要對上面的組件進行一些簡單的修改:把 Click Me 替換為 <ng-content></ng-content>

btn.component.html

<button (click)=onClick($event)>
  <ng-content></ng-content>
</button>

在使用 btn 組件的地方:

<app-btn>Cancel</app-btn>
<app-btn><b>Submit</b></app-btn>

<app-btn></app-btn> 中的內(nèi)容會傳遞給 btn 組件,并且顯示在 ng-contnet 中。

多插槽內(nèi)容投影

上面的 btn 組件非常簡單,但實際上ng-content 要比這個更強大。一個組件可以具有多個插槽,每個插槽可以指定一個 CSS 選擇器,該選擇器會決定將哪些內(nèi)容放入該插槽。該模式稱為多插槽內(nèi)容投影。使用此模式,我們必須指定希望投影內(nèi)容出現(xiàn)在的位置。可以通過使用 ng-contentselect 屬性來完成此任務(wù)。

要創(chuàng)建使用多插槽內(nèi)容投影的組件,需要執(zhí)行以下操作:

  • 創(chuàng)建一個組件。

  • 在組件模板中,添加 ng-content 元素,讓你希望投影的內(nèi)容出現(xiàn)在其中。

  • select 屬性添加到 ng-content 元素。 Angular 使用的選擇器支持標簽名、屬性、CSS 類和 :not 偽類的任意組合。

下面我們來創(chuàng)建一個復(fù)雜一些的 card 組件。

card.component.html

<div class="card">
  <div class="header">
    <ng-content select="header"></ng-content>
  </div>
  <div class="content">
    <ng-content select="content"></ng-content>
  </div>
  <div class="footer">
    <ng-content select="footer"></ng-content>
  </div>
</div>

在使用 card 組件的地方:

app.component.html

<app-card>
  <header>
    <h2>Angular</h2>
  </header>
  <content>One framework. Mobile & desktop.</content>
  <footer><b>Super-powered by Google </b></footer>
</app-card>

<app-card>
  <header>
    <h2 style="color:red;">React</h2>
  </header>
  <content>A JavaScript library for building user interfaces</content>
  <footer><b>Facebook Open Source </b></footer>
</app-card>

如果在 app-card 中有不屬于 header, content, footer 之外的內(nèi)容呢?比如按照下面的寫法使用 app-card 組件:

app.component.html

<app-card>
  <header>
    <h2>Angular</h2>
  </header>
  <div>Not match any selector</div>
  <content>One framework. Mobile & desktop.</content>
  <footer><b>Super-powered by Google </b></footer>
  <div>This text will not not be shown</div>
</app-card>

會發(fā)現(xiàn)兩個 div 都沒有渲染在頁面中,為了解決這個問題,我們可以在組件中添加一個沒有任何 selectorng-content 標簽。所有沒辦法匹配到任何其他插槽的內(nèi)容都會被渲染在這個里面。

card.component.html

<div class="card">
  <div class="header">
    <ng-content select="header"></ng-content>
  </div>
  <div class="content">
    <ng-content select="content"></ng-content>
  </div>
  <div class="footer">
    <ng-content select="footer"></ng-content>
  </div>
  <ng-content></ng-content>
</div>

ngProjectAs

在某些情況下,我們需要使用 ng-container 把一些內(nèi)容包裹起來傳遞到組件中。大多數(shù)情況是因為我們需要使用結(jié)構(gòu)型指令像 ngIf 或者 ngSwitch 等。比如只有在某些情況下才向 card 組件傳遞 header。

在下面的例子中,我們將 header 包裹在了 ng-container 中。

<app-card>
  <ng-container>
    <header>
      <h2>Angular</h2>
    </header>
  </ng-container>
  <content>One framework. Mobile & desktop.</content>
  <footer><b>Super-powered by Google </b></footer>
</app-card>

由于 ng-container 的存在,header 部分并沒有被渲染到我們想要渲染的插槽中,而是渲染到了沒有提供任何 selector 的 ng-content 中。

在這種情況下,我們可以使用 ngProjectAs 屬性。

在上面的 ng-container 加上這個屬性,就可以按照我們的期望來渲染了。

<app-card>
  <ng-container ngProjectAs='header'>
    ...
</app-card>

以上是“Angular怎么使用ng-content進行內(nèi)容投影”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI