关于角度:如何使用* ngIf其他?

How to use *ngIf else?

我使用的是angular,我想在这个例子中使用*ngIf else(从版本4开始提供):

1
2
3
4
5
  content here ...



 other content here...

我怎样才能实现与ngIf else相同的行为?


角度4和5:

使用else

1
2
3
4
    content here ...


<ng-template #other_content>other content here...</ng-template>

您也可以使用then else

1
2
3
here is ignored    
<ng-template #content>content here...</ng-template>
<ng-template #other_content>other content here...</ng-template>

或仅限于then

1
<ng-template #content>content here...</ng-template>

演示:

柱塞

细节:

是angular自己实现的