簡體   English   中英

可以使用指令將內容嵌套到 Angular 中的 ng-template 中嗎

[英]Can a Directive be used to nest a content into the ng-template in Angular

在我的項目中,我想使用 Directive 將我的代碼動態嵌套到 ng-template 中。 Angular有什么辦法嗎

我有這樣的代碼

<button> Click Me </button>

如果我使用這樣的指令(custDir)

<button custDir> Click Me </button>

Angular 應該像這樣呈現

<ng-template>
    <button> Click Me </button>
</ng-template>

有什么辦法可以做到這一點?

要訪問按鈕文本,您需要使用 ng-content

在您的指令中:

<ng-template>
    <button> <ng-content></ng-content><!--This will get replaced with "Click Me" -->  </button>
</ng-template>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM