我想使用SELECT将从一个服务获得的ID保存到另一个服务中,这是我的方法
<select class="form-control" id="select_fac" [(ngModel)]="rep.idfac">
<option selected disabled>Select the company</option>
<option *ngFor="let fact of factory" [ngValue]="fact.id_fac">{{fact.name}}</option>
</select>
我的组件里有这个。
factory: Factory[]=[];
rep:Representative= new Representative();
1条答案
按热度按时间v8wbuo2f1#
尝试使用Reactive Forms:Angular Docs: Reactive Forms
您可以将数据与formContralName绑定