如何使用角度更新下拉列表的值?

Posted

技术标签:

【中文标题】如何使用角度更新下拉列表的值?【英文标题】:How can I update values of a dropdown list with angular? 【发布时间】:2021-11-10 16:30:56 【问题描述】:

我想将值更新到下拉列表中,但是当我单击表单时,值更改为 null。 知道添加工作正常。任何人都可以帮助我吗? 这是我的 html 代码:


    <div class="form-group">
        <label for="service">Service</label>
       <select id="service" class="form-control" ngModel="editPersonne?.service" name="serviceId">
            <option value="">Service</option>
      <option value="service.id" *ngFor="let service of services" >service.designation</option>
        </select>

    </div>

【问题讨论】:

【参考方案1】:

你应该使用变量

<div class="form-group">
   <label for="service">Service</label>
     <select id="service" class="form-control" [(ngModel)]="editPersonne?.service" name="serviceId">
        <option value="">Service</option>
        <option [value]="service.id" *ngFor="let service of services" >service.designation</option>
     </select>
</div>

<div class="form-group">
   <label for="service">Service</label>
     <select id="service" class="form-control" ngModel="editPersonne?.service" name="serviceId">
        <option value="">Service</option>
        <option value="service.id" *ngFor="let service of services" >service.designation</option>
     </select>
</div>

【讨论】:

检查 ngModel 变量

以上是关于如何使用角度更新下拉列表的值?的主要内容,如果未能解决你的问题,请参考以下文章

如何根据主下拉列表更新 2 个下拉列表?

如何在单击角度7中的按钮时获取下拉列表的选定值和选定文本[重复]

如何在角度 5 中绑定角度材料下拉列表的数据?

如何将值绑定到角度下拉列表以编辑某些数据

如何在颤振中实现未来的下拉列表并根据用户选择更新值

如何在带有ng-repeat的角度js表中使用复选框数组和文本区域/下拉列表数组?