如何在角度6中为选择选项设置默认选定对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在角度6中为选择选项设置默认选定对象相关的知识,希望对你有一定的参考价值。

我正在尝试为角度6中的选择选项设置默认选定对象。但它不起作用

<select name="editUserType" class="form-select" id="editUserType" [(ngModel)]="updateModel.userType">
    <option value="" selected disabled>Select User Type</option>
    <option *ngFor="let userType of userTypeList"  [selected ]="userType.code == updateModel.userType.code"  [ngValue]="userType">{{userType.description}}</option>
</select> 

userType是我想要的对象,当我加载网页时为select选项设置默认对象。

答案

设置组件的默认值

constructor(){
  this.updateModel.userType = ""
}

以上是关于如何在角度6中为选择选项设置默认选定对象的主要内容,如果未能解决你的问题,请参考以下文章

如何默认选择第一项,然后在角度 6 中突出显示选定的下一项 json 数据

如何在 django 中为分组选项设置默认值

如何在 django 中为分组选项设置默认值

xcode11 如何在 PickerView 中为选定选项提供操作。这样当我在所选数组中选择一个选项时,我可以对其执行操作

在 UITabBar 中为选定选项卡设置色调颜色

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