我想只顯示使用*ngFor
如何限制在ngFor中顯示的項目數量?
在我的組件列表中的第3項,
formInputs: any = [
{name:'foo'},
{name: 'bar'},
{name: 'buzz},
{name: 'dhsfk'},
{name: 'sadsd'}
]
在我的模板,
<div class="form-group label-floating" *ngFor="let input of formInputs">
{{input.name}}
</div>
並請注意,我想申請僅在模板本身中的更改不在組件中。
不知道爲什麼片中在[ngFor](https://angular.io/docs/ts/未提及最新/ API /普通/指數/ NgFor-directive.html)DOC .. –
我還提供了文檔鏈接花花公子。這是一個數組函數。所以它沒有在ngFor中給出。 https://angular.io/docs/ts/latest/api/common/index/SlicePipe-pipe.html –