如果具有相同内容的不同容器的if else模板表达式

时间:2017-05-25 08:42:38

标签: angular angular-template

如何使用Angular的if else模板条件呈现具有相同内容的不同容器?

类似这样的事情

<ng-container *ngIf="whichContainer; then container else other_container">
   <!-- Same content for both containers -->
   content here...
</ng-container>

<ng-template #container><button>content...</button></ng-template>
<ng-template #other_container><div>content..</div></ng-template>

0 个答案:

没有答案