2016-11-15 76 views
0

我環路上的對象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基礎拉數據,並寫入厄運?

回答

0

我覺得你可以循環數組和一些API在組件每個項目獲得的數據。在這種情況下,您可以創建包含所有必要信息的數組,並將其顯示在模板中