我已经通过在Angular项目中使用反应式表单来实现自己的表单。在这里,我使用formGroup和'new FormControl'创建字段。现在,我有一个疑问,是否可以在不使用Formcontrol的情况下实现字段的任何方法。
答案 0 :(得分:1)
是的,只需使用FormBuilder。像这样:
? super Executor<T>
请注意,不需要import { FormBuilder } from '@angular/forms';
constructor(private fb: FormBuilder) { }
this.productForm = this.fb.group({
productName: ['', [Validators.required,
Validators.minLength(3),
Validators.maxLength(50)]],
productCode: ['', Validators.required],
starRating: ['', NumberValidators.range(1, 5)],
tags: this.fb.array([]),
description: ''
});
。
有关更多信息,请参见文档:https://angular.io/guide/reactive-forms#generating-form-controls-with-formbuilder