在multiLevel对象中使用ngFor的ngModel

时间:2018-02-08 09:13:11

标签: angular ionic2

如何在多级对象的多ngModel循环中使用ngFor

<div no-padding *ngFor="let addon of item.addons_list; let mainIndex= index">
  <div *ngIf="addon.has_sub">
    <ion-row *ngFor="let sub of addon.sub_list ; let sub1 = index">
      <ion-col col-12 no-padding>
        <ion-select dir="rtl" placeholder="{{ sub.name }}" [(ngModel)]="add[mainIndex][sub1]">
          <ion-option value="{{ch.id}}" *ngFor='let ch of sub.items'> {{ch.name}} </ion-option>
        </ion-select>
      </ion-col>
    </ion-row>
  </div>
</div>

0 个答案:

没有答案