用在表单控件中使用”Validators.required"可以强制要求表单控件的值不能为空。但即使使用Validators.required依然无法保证表单控件的值不为null。 为了将非null类型的值添加到表单控件中,可以将字段定义为非null类型,并在创建FormControl时传递非null值作为初始值。这可以通过后面的代码演示:
import { Component } from '@angular/core';
import { FormControl, Validators } from '@angular/forms';
@Component({
selector: 'app-root',
template: `
`,
})
export class AppComponent {
myField: string;
myForm = new FormGroup({
myField: new FormControl('', Validators.required),
});
constructor() {
this.myField = "initial non-null value";
this.myForm.patchValue({ myField: this.myField });
}
}
在这个例子中我们使用时定义“myField”的类型为“string”,我们在FormControl定义中添加了 “Validators.required”以确保该字段的初始值不能为空。我们在AppComponent中添加了构造函数,并将“myField”的非null值传递给FormControl。因为FormControl的类型被定义为“myField”的类型,所以传递一个非null值不会产生编译错误。
最后使表单控件“myField”的“required”验证规则对该控件的非null类型值进行验证。