5

我想像这样在数组中设置值:

this.form.controls[name].setValue('name')

但我正在使用数组形式,这不起作用,即使我显式传递数组索引

例如,这是我的表单数组,我想做的是在函数中设置值

user: FormGroup;
users: FormGroup;

constructor(private fb: FormBuilder) {}
ngOnInit() {
  this.user = this.buildGroup();
  this.users = this.fb.group({
    data: this.fb.array([this.user])
  });
}
get fData() {
  return this.users.get('data') as FormArray;
}
buildGroup() {
  return this.fb.group({
    name: ['', [Validators.required, Validators.minLength(2)]],
    account: this.fb.group({
      email: ['', Validators.required],
      confirm: ['', Validators.required]
    })
  });
}
setValue(index) {
  // This doesn't work
  this.fData[index].controls[name].setValue('name')
}
onSubmit() {
  this.fData.push(this.buildGroup());
  const {valid, value} = this.fData;
  console.log(valid, value);
}
4

3 回答 3

28

对于数组,您需要使用setControl. 像这样的东西:

    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: ''
    });

    ...

    // Update the data on the form
    this.productForm.patchValue({
        productName: this.product.productName,
        productCode: this.product.productCode,
        starRating: this.product.starRating,
        description: this.product.description
    });
    this.productForm.setControl('tags', this.fb.array(this.product.tags || []));
于 2017-07-08T16:12:59.860 回答
8

这是我在 formArray 的特定表单控件中手动设置值并为我工作的方法。我已formArray命名为bundleDetails.

   this.formBuilderObj['bundleDetails'] = 
   this.formBuilder.array([this.createBundleItem()]);

    createBundleItem(): FormGroup {
    return this.formBuilder.group({
     bsku: ['', Validators.required],
     bqty: ['', Validators.required],
     bprice: ['', Validators.required]
    });
   }

设置 bsku 控件值的方法(其中 index 是[formGroupName]="i"从 html 文件传递​​的)。

   setSku(sku: string, index: number) {
   const faControl = 
   (<FormArray>this.pmForm.controls['bundleDetails']).at(index);
   faControl['controls'].bsku.setValue(sku);
  }

希望这可以帮助。快乐编码。

于 2018-03-08T13:55:59.440 回答
0

如果您收到错误“错误错误:无法找到带有路径的控件:'addresses -> 0 -> addressType'”或类似内容,很可能是因为您正在传递值,但您的 html 模板期望值沿带有控件名称。

要解决此问题,请遍历数组中的每个项目,并为每个值创建一个新的表单组实例 - 基于您的视图所期望的 - 然后推送到一个新的数组变量,然后我们在表单中设置它。

请参见下面的代码:

var tagsArray = [];
this.product.tags.forEach(product => tagsArray.push(this.fb.group({tag: [product.tag, [Validators.required]]})));
this.productForm.setControl('tags', this.fb.array(tagsArray || []));

像这样在视图中引用:

<div class="tag" *ngFor="let t of tags.controls; let i = index" [formGroupName]="i" class="mb-2">
      <input type="text" formControlName="tag" placeholder="Tag name" class="primary_input">
       <button mat-icon-button (click)="deleteTag(i)">
           <mat-icon>clear</mat-icon>
       </button>
 </div>

这使您可以加载以前的结果,同时能够添加更多值和验证用户输入。

希望这可以帮助。

于 2019-11-23T12:28:13.397 回答