Angular官网里对ng-container的介绍:

The Angular is a grouping element that doesn’t interfere with styles or layout because Angular doesn’t put it in the DOM.

不会出现在最后渲染出的页面里,只是一个包裹其他element的容器。

一个例子:

Angular ng-container使用的一个例子

最后生成的html:

Angular ng-container使用的一个例子

上图红色区域里的内容实际上是两个ng-container里定义的template被展开后得到的内容,但是ng-container本身没有出现在html里:

Angular ng-container使用的一个例子

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
Angular ng-container使用的一个例子

相关文章: