我有一个项目列表,需要编写一个函数,该函数计算下面列表中第4位所有整数的总数。 // component
ngOnInit() {
this.data = this._sharedService.sharedData;
}
// template
<div *ngIf="data.title">
<h1>{{ data.title }}</h1>
<h5>Author ID: {{ data.authorID }}</h5>
<div>
<span>{{ data.content }} </span>
<span>
<a href="#" *ngIf="showReadMore" (click)="readMore()">Read More ↪</a>
</span>
</div>
</div>
。
我该如何只获取那些特定列的总数? 我需要将每个索引位置加起来还是有更简单的方法?
(20,15,20,70,25,10)