首页 > 其他 > 详细

[Angular 8] Keep original DOM structure with ng-container

时间:2019-10-08 21:03:19      阅读:94      评论:0      收藏:0      [点我收藏+]

ng-container is using for grouping elments together, a bit similar to div.

If you want to group some elements together, but don‘t want to break the DOM structure, you can use ng-container.

For example:

<p>
  I turned the corner
  <span *ngIf="hero">
    and saw {{hero.name}}. I waved
  </span>
  and continued on my way.
</p>

You also have a CSS style rule that happens to apply to a <span> within a <p>aragraph.

css:

p span { color: red; font-size: 70%; }

技术分享图片

 

The p span style, intended for use elsewhere, was inadvertently applied here.

Another problem: some HTML elements require all immediate children to be of a specific type. For example, the <select> element requires <option> children. You can‘t wrap the options in a conditional <div> or a <span>.

<div>
  Pick your favorite hero
  (<label><input type="checkbox" checked (change)="showSad = !showSad">show sad</label>)
</div>
<select [(ngModel)]="hero">
  <span *ngFor="let h of heroes">
    <span *ngIf="showSad || h.emotion !== ‘sad‘">
      <option [ngValue]="h">{{h.name}} ({{h.emotion}})</option>
    </span>
  </span>
</select>

技术分享图片

 

Using ng-contianer:

<p>
  I turned the corner
  <ng-container *ngIf="hero">
    and saw {{hero.name}}. I waved
  </ng-container>
  and continued on my way.
</p>

技术分享图片

 

<div>
  Pick your favorite hero
  (<label><input type="checkbox" checked (change)="showSad = !showSad">show sad</label>)
</div>
<select [(ngModel)]="hero">
  <ng-container *ngFor="let h of heroes">
    <ng-container *ngIf="showSad || h.emotion !== ‘sad‘">
      <option [ngValue]="h">{{h.name}} ({{h.emotion}})</option>
    </ng-container>
  </ng-container>
</select>

技术分享图片

 

[Angular 8] Keep original DOM structure with ng-container

原文:https://www.cnblogs.com/Answer1215/p/11637556.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!