Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

angular - Where to place *ngIf directive?

Is there any difference between

<ng-container *ngIf="flag">
       <child-component></child-component>
</ng-container> 

or directly

<child-component *ngIf="flag"></child-component>

And what is the best practice for that?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

ng-container is a directive that is not loaded into the DOM by Angular. It's function is to group together other directives. In the case of ngIf it is used to group together different elements that all depend on the same flag.

<ng-container *ngIf="flag">
  <div>1</div>
  <div>2</div>
  ...
</ng-container>

If you only have one element there is not much grouping to do and you can place the *ngIf directly on the element.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...