如何在Angular 2中的选择控件中显示占位符(空选项)?

前端之家收集整理的这篇文章主要介绍了如何在Angular 2中的选择控件中显示占位符(空选项)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的模板中有这个代码
<select [ngModel]="selectedSubSectionId" (ngModelChange)="onSubSectionChange($event)">
  <option *ngFor="let subSection of event.subSections" [ngValue]="subSection.id">{{ subSection.name }}</option>
</select>

在我的组件中:

public selectedSubSectionId: any;

public onSubSectionChange(subSectionId: any) {
  // some code I execute after ngModel changes.
}

这工作正常,但一开始我有一个空盒子.我想在那里显示一个占位符消息.如何使用ngModel执行此操作?

我的解决方

在组件typescript文件中,我添加了一个我没有初始化的属性selectUndefinedOptionValue,在html中我将undefinedSelectOptionValue添加为占位符选项的值.此解决方案适用于数字和字符串模型属性.

@Component({
  selector: 'some-component-selector',templateUrl:'url to template',})
export class SomeComponent implements OnInit {
    private selectUndefinedOptionValue:any;
    private someObject:SomeObject;
    
    ngOnInit() {
      someObject = new SomeObject();
    }
}
<select [(ngModel)]="someObject.somePropertyId">
  <option disabled hidden [value]="selectUndefinedOptionValue">-- select --</option>
  <option *ngFor="let option of options" [value]="option.id">option.text</option>
</select>

猜你在找的Angularjs相关文章