как использовать ссылочную переменную в ng-контейнере? - PullRequest
0 голосов
/ 26 апреля 2018

component.html

 <select #businesstype class="form-control" id="business_type" (change)="type(businesstype.value)"required [(ngModel)]="model.business_type" name="business_type" #Type="ngModel">
              <option disabled>Select</option>
              <option (click)="businesstype" *ngFor="let user of details" [value]="user.email">{{user.customer}}</option>
          </select>
          <ng-container  *ngFor="let user of details">
            <div  class="col-sm-1" #type *ngIf="businesstype.value == user.email">{{user.id}}</div>
          </ng-container>

как только я выбираю опцию раскрывающегося списка, генерируемый идентификатор электронной почты сохраняется в businesstype.and, и я использую тот же контейнер forloop, получает id.but как хранить в ссылочной переменной.

...