두 개의 배열에 값을 저장하여 단일 이온 목록에서 반복했습니다. Billerstatusstate와 Billerstatusnamelst는 두 개의 배열입니다.* ngFor-- IONIC2/Angular2에서 두 개의 배열을 반복하십시오.
I는 로컬 변수
<ion-list ion-item *ngFor="let stat of Billerstatusstate;let bil of Billerstatusnamelst " >
{{bil}} <button round>{{stat}}</button>
</ion-list>
및
<ion-list ion-item *ngFor="let stat of Billerstatusstate" *ngFor="let bil of Billerstatusnamelst " >
{{bil}} <button round>{{stat}}</button>
</ion-list>
그 복용 제 반복 값을 반복 다음 시도했다.
내가 뭔가 빠졌습니까 ??
하나의 배열의 두 값을 저장하고 ngFor를 사용하여보기 측에서 그것을 분할하는 anyother 방법이 ..
, 난 또 다른 배열을 반복해야합니다. –
다른 배열의 수가 첫 번째 배열과 같은 개수입니까? 그리고 그 배열은 관련이 있습니까? – rinukkusu
두 배열 모두 이름/상태 msg를가집니다. 인덱스/숫자와 관련이 없습니다. –