Я хочу выполнить динамическую c проверку формы. Я создал уникальный атрибут имени , но не знаю, как создать ссылочную переменную шаблона ngModel Dynami c. Из-за этого у меня возникают проблемы с проверкой.
Мой код
<ng-container *ngFor="let singleLocation of model.LocationArr; let i = index">
<div class="col-xl-5">
<label style="font-weight: 700;">License Location</label>
<span style="color:#F6566B;">*</span>
<input type="text" autocomplete="off" class="formcontrol"name="unq{{singleLocation}}"
[(ngModel)]="singleLocation.location" #location1="ngModel" [ngClass]="{ 'is-invalid': f.submitted && location1.invalid }"
required ngx-google-places-autocomplete [options]='option'
#placesRef="ngx-places" (onAddressChange)="handleAddressChange($event)">
<div *ngIf="f.submitted && location1.invalid" class="invalid-feedback">
<div *ngIf="location1.errors.required">License Location is required</div>
</div>
</div>
</ng-container>```