ng-container
在 正式文件中有提到,但是我仍然在试图理解它是如何工作的,以及用例是什么。
<ng-container>
是否与 <template>
做同样的事情,还是取决于是否编写指令来使用它们中的一个?
是
<ng-container *ngPluralCase="'=0'">there is nothing</ng-container>
还有
<template [ngPluralCase]="'=0'">there is nothing</template>
应该是一样的吗?
我们如何选择他们中的一个?
如何在自定义指令中使用 <ng-container>
?