我環路上的對象ngfor angular2得到迭代的vlaue
這裏的數組服務器基礎contnet是循環
<div class="col-lg-3 col-md-5 col-sm-10 col-xs-10 box" *ngFor="let partner of foundPartners" >
<div class="alert">go to webservice for each item in the loop and write alerts here base on the id</div>
</div>
的HTML現在在每次循環,我需要獲得該項目的ID然後轉到webservice api並獲取該項目的一些數據庫並在厄運內打印它。
我曾經與asp.net轉發器一起工作,在那裏你有ItemDataBound事件,可以獲取該項目,然後對它的厄運基地進行一些更改。
在angular2中有類似的東西嗎?我怎麼能從循環中的項目的API基礎拉數據,並寫入厄運?