有一个包含许多项目的数组,我想显示最后 3 个项目。
进入我的 html
<li *ngFor="let project of projects;">
<h2>{{ project.name }}</h2>
<p>{{ project.meta_desciption }}</p>
</li>
它现在显示所有项目(超过 20 个)。我怎样才能只显示最后 3 个?我想我需要在我的代码中使用“最后一个”,但无法弄清楚 https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html