html Angular - ngTemplateOutlet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Angular - ngTemplateOutlet相关的知识,希望对你有一定的参考价值。

 <h4>No context</h4>
  <ng-container *ngTemplateOutlet="noContext"></ng-container>

  <h4>Fixed Context</h4>
  <ng-container *ngTemplateOutlet="fixedContext; context:
    {
      contentType: 'fixed content',
      details: 'This context is hard-coded in the ng-container. It is marginally more
      useful than no context, but not much'
    }">
  </ng-container>

  <h4>Dynamic context</h4>
  <ng-container *ngTemplateOutlet="dynamicContext; context: getTemplateContext()">
  </ng-container>


  <!-- I like to define templates down at the bottom so they're out of the way -->
  <ng-template #noContext>
    This is a template displayuing without any context. All we can do is display this content as is
  </ng-template>
  <ng-template #fixedContext let-contentType="contentType" let-details="details">
    This is a template displaying {{contentType}}. {{details}}
  </ng-template>
  <ng-template #dynamicContext let-contentType let-details="details">
    This is a template displaying {{contentType}}. {{details}}
  </ng-template>

以上是关于html Angular - ngTemplateOutlet的主要内容,如果未能解决你的问题,请参考以下文章

带有表单和 Angular 日期的 Angular/HTML 输入本地日期时间

Angular 2 动态 html

Angular 5 - 使用管道清理 HTML

Angular 5将html导出到图像

在 Angular 2 中打印 Html 模板(Angular 2 中的 ng-print)

Angular/ HTML5 到 iOS WKWebView 通信