如何使用SELECT In Angel将id从一个服务保存到另一个服务

lyr7nygr  于 2022-10-02  发布在  Java
关注(0)|答案(1)|浏览(90)

我想使用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();
v8wbuo2f

v8wbuo2f1#

尝试使用Reactive Forms:Angular Docs: Reactive Forms

您可以将数据与formContralName绑定

相关问题