Angular2 別名匯出的值
Angular2 提供了幾個可以別名為區域性變數的匯出值。這些是:
- 指數
- 第一
- 持續
- 甚至
- 奇
除了 index
之外,其他的都取 Boolean
值。如前面的使用索引的示例,可以使用以下任何匯出值:
<div *ngFor="let item of items; let firstItem = first; let lastItem = last">
<p *ngIf="firstItem">I am the first item and I am gonna be showed</p>
<p *ngIf="firstItem">I am not the first item and I will not show up :(</p>
<p *ngIf="lastItem">But I'm gonna be showed as I am the last item :)</p>
</div>