我尝试默认选择一个在垫选中包含“空” [值]的选项。问题是,当显示html时,它没有选择带有“ null” [value]的选项。我在Angular Material 7中使用Angular 7反应形式。这就是我所拥有的-
HTML:
<mat-select placeholder="User" formControlName="userId">
<mat-option [value]="null">None</mat-option>
<mat-option *ngFor="let user of users" [value]="user.userId">
{{ user.name }}
</mat-option>
</mat-select>
Component.ts:
this.userId.setValue(null);
上面的代码行假设我已经实例化了formGroup,其中一个formControl名为“ userId”,而“ this.userId”是组件的属性,该组件引用了“ this.userForm.get('userId')”
因此,当我将“ userId”的formControl值设置为null时,在html中什么也没有选择。我的印象是,您可以将“空”值作为垫选的选项之一,我错了吗?如果没有,那么关于如何使它按我想要的方式工作的任何建议。
谢谢!
答案 0 :(得分:0)
您能否尝试将默认的空值作为“用户”数组的第一个选项。
this.users.unshift({
userId: null,
name: 'select'
});
模板:
<mat-select placeholder="User" formControlName="userId">
<mat-option *ngFor="let user of users" [value]="user.userId">
{{ user.name }}
</mat-option>
</mat-select>
答案 1 :(得分:0)
您不能设置null,因为您具有整数属性(user.userId),示例代码应该有效。
模板代码:
<form [formGroup]="patientCategory">
<mat-form-field class="full-width">
<mat-select placeholder="Category" formControlName="patientCategory">
<mat-option [value]="0">None</mat-option>
<mat-option *ngFor="let category of patientCategories" [value]="category.id">
{{category.name}} - {{category.description}}
</mat-option>
</mat-select>
</mat-form-field>
<p>{{patientCategory.get('patientCategory').value | json}}</p>
</form>
组合代码
import { Component, ViewChild } from '@angular/core';
import { FormBuilder, FormGroup, FormControl, Validators } from '@angular/forms';
/**
* @title Basic table
*/
@Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
patientCategory: FormGroup;
patientCategories = [{
id: 1,
name: 'name 1',
description: 'description 1'
}, {
id: 2,
name: 'name 2',
description: 'description 2'
}, {
id: 3,
name: 'name 3',
description: 'description 3'
}]
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.patientCategory = this.fb.group({
patientCategory: [null, Validators.required]
});
//const toSelect = this.patientCategories.find(c => c.id == 3);
this.patientCategory.get('patientCategory').setValue(0);
}
}