angular 2模型驱动的嵌套表单组件

时间:2016-09-22 03:53:58

标签: javascript forms angular angular2-forms angular2-components

我有什么:

我正在构建一个离子2应用程序,并构建了一个包含

的基本角度2组件
  • 输入字段

  • 显示输入标题的标签

  • 显示任何验证错误的标签

我将此称为我的输入组件

我有一个页面组件,上面有一个表单,目前有文本输入。 1个常规输入(密码)和1个输入包装在我的输入组件(用户名)中。

这是我的网页组件的相关部分

ngOnInit() {
  this.loginForm = this.formBuilder.group({
    username: ['', Validators.required],
    password: ['', Validators.required]
  });
}

这是页面组件模板

<form [formGroup]="loginForm" (ngSubmit)="onSubmit()">

  <!-- My input component -->
  <aw-input-text id="username" name="Username" [formInput]="loginForm.controls.username"></aw-input-text>

  <!-- A standard input control -->
  <ion-item [class.error]="loginForm.controls.password.errors">
    <ion-label floating>Password</ion-label>
    <ion-input type="text" value="" name="password" formControlName="password"></ion-input>
    <p *ngIf="loginForm.controls.password.errors">This field is required!</p>
  </ion-item>

  <button type="submit" class="custom-button" [disabled]="!loginForm.valid" block>Login</button>

</form>

这是我输入组件的模板

<!-- Component template -->
<form [formGroup]="formGroup">
    <ion-item>
        <ion-label floating>{{inputName}}</ion-label>
        <ion-input type="text" formControlName="inputValue"></ion-input>
        <p *ngIf="!formGroup.controls.inputValue.valid">This field is required!</p>
    </ion-item>
</form>

,这是输入组件

import {Component, Input} from '@angular/core';
import {FormBuilder} from '@angular/forms';

@Component({
  selector: 'aw-input-text',
  templateUrl: 'build/shared/aw-input-text/aw-input-text.html'
})
export class AwInputText {

  @Input('formInput')
  public formInput;
  @Input('name')
  public inputName;
  public formGroup;
  constructor(private formBuilder: FormBuilder) {
  }

  ngOnInit() {
     this.formGroup = this.formBuilder.group({
        inputValue: this.formInput
     });
  }

}

组件正确呈现。

问题:

组件内部的输入不会更新其所在表单的有效状态。

当我填写用户名时,表格变为有效的密码

当我填写密码时,表单的用户名仍然无效

因此表单可以查看输入组件的有效状态,只是输入组件更改有效状态不会触发表单更新。

可能的解决方案1 ​​

如本文所述和plunk

https://scotch.io/tutorials/how-to-build-nested-model-driven-forms-in-angular-2

https://plnkr.co/edit/clTbNP7MHBbBbrUp20vr?p=preview

我可以修改我的页面组件来创建一个表单组,其中包含我想在输入组件中使用的每个表单控件的嵌套表单组

ngOnInit() {
  this.loginForm = this.formBuilder.group({
    username: this.formBuilder.group({
      username: ['', Validators.required],
    }),
    password: ['', Validators.required],
  });
}

此解决方案符合文章中添加输入控件数组的情况,但在我的情况下,我认为这样会感觉很乱

可能的解决方案2

我考虑的另一个hacky解决方案是使用输入组件中的@output指令触发页面组件上的事件,每当输入组件更新时刷新表单。

更新到输入组件

this.formGroup.controls.inputValue.valueChanges.subscribe(value => {
  this.formUpdated.emit({
    value: value
  })
});

更新页面组件

public onUpdated(value){
  this.loginForm.updateValueAndValidity();
}

并更新页面组件模板

<aw-input-text id="username" name="Username" (updated)="onUpdated($event)" [formInput]="loginForm.controls.username"></aw-input-text>

这确实给了我所需的功能,但我认为在每个表单页面上都有一个事件处理程序来使输入组件工作似乎有些麻烦。

问题

我是否有办法让我的组件更新其所在表单的有效状态(请记住,我希望在每种表单中多次重复使用此组件),而无需借助上述解决方案

3 个答案:

答案 0 :(得分:4)

谢谢你的回答。最后,我们创建了两个组件,一个自定义表单组件和一个自定义输入组件。

我们在自定义表单组件中嵌入了所需的自定义输入组件,自定义表单组件使用@ContentChildren来标识和注册所有子自定义输入组件。

这样我们就不必将表单传递给每个输入,而且每次输入都没有嵌套的表单组。

// Each CustomInputText component exposes a FormControl and 
// a control definition which has additional info about the control
@ContentChildren(CustomInputText, {descendants: true})
public customInputComponents: QueryList<CustomInputText>;

private initialised;

public ngAfterContentChecked() {
  // Only initialise the form group once
  if (!this.initialised) {
    this.initialised = true;
    this.customInputComponents.forEach((input)=>{
        this.formGroup.addControl(input.controlDefinition.id, input.formControl); 
    });
  }
}

答案 1 :(得分:3)

您可以将loginForm @Input输入到嵌套组件中,就像“parentForm”一样。然后在子组件init上将嵌套的formGroup注册到parentForm,并在子组件destroy上对其进行反对。

答案 2 :(得分:3)

我在我的案例中所做的事情(嵌套的动态形式)在某种程度上类似于Marcin的回应。

我将现有FormGroup作为parentForm传递,Component的{​​{1}}视图如下:

<fieldset [formGroup]="parentForm">
    <label *ngIf="label" [attr.for]="key">{{label}}</label>
    <input [id]="key" [type]="type" [formControlName]="key" />
</fieldset>

它符合我的需要。希望它也可以帮到你。

<强>更新 我已经创建了一个用于加速动态表单创建的库。您可以查看我如何使用此答案中的技术:https://www.npmjs.com/package/dorf