简体   繁体   English

angular2中的嵌套表单

[英]Nested Forms in angular2

How to create form with nesting fields, i know about formArray in angular2 RC but am bit confused how to use it correctly ? 如何创建带有字段嵌套形式,我知道formArray在angular2 RC,但我有点困惑如何正确使用它呢? let suppose i have an form like this 假设我有一个这样的形式

// Main Form with formArray named as `global_modifier`
this.myForm = this._fb.group({
  .......
  name: ['', []],
  global_modifier: this._fb.array([
    this.initGlobalModifiers()
  ])
  ....
});


removeModifier(i: number) {
  const control = <FormArray>this.myForm.controls['global_modifier'];
  control.removeAt(i);
}

addModifier() {
  const control = <FormArray>this.myForm.controls['global_modifier'];
  control.push(this.initGlobalModifiers());
}

/*global_modifier function having nested fields named `items` .....*/
initGlobalModifiers() {
  return this._fb.group({
  .....
    modifier_title: ['', []],
    items: this._fb.array([
      this.initItems()
    ])
    .........
  });
}


removeItem(i: number) {
  const control = <FormArray>this.myForm.controls['items'];
  control.removeAt(i);
}

addItem() {
  const control = <FormArray>this.myForm.controls['items'];
  control.push(this.initItems());
}

// items intilization
initItems() {
  return this._fb.group({
    item_title: ['', []],
    item_price: ['', []]
  });
}

now i am confused how to use this form in the html ?? 现在我很困惑如何在html中使用这个表单?

i am trying this but did't work as expected.. 我正在尝试这个,但没有按预期工作..

<form [formGroup]="myForm" novalidate>
  <input type="text" placeholder="name" formControlName="name" maxlength="50">
  <div formArrayName="global_modifier" *ngFor="let cont of myForm.controls.global_modifier.controls; let i=index, let fst=first">
    <div [formGroupName]="i">
      <input type="text" placeholder="modifier_title" formControlName="modifier_title" maxlength="50">
      <button *ngIf="fst" [ngClass]="{'inputAddButton ':fst}" (click)="addModifier(i)" type="button">
        <i class="fa fa-plus fa-white" aria-hidden="true"></i>
      </button>
      <button *ngIf="!fst" [ngClass]="{'inputDeleteButton ':!fst}" (click)="removeModifier(i)">
        <i class="fa fa-trash-o fa-white" aria-hidden="true"></i>
      </button>

      <!--block For form mlutiple entrys-------------------->
      <div formArrayName="items">
        <div *ngFor="let items of cont.items; let item_index=index, let fst=first">
          <div [formGroupName]="i">
            <div style="margin-bottom:10px">
                     ............... NOTHING dISPLAY HERE ???
            </div>
          </div>
        </div>
      </div>
      <!--block For form mlutiple entrys---=------------>
      <br>
    </div>
  </div>
</form>

whats the error in my code ? 什么是我的代码中的错误? or anyone having working example of nested forms in angular2 ? 或者有任何人在angular2中有嵌套表格的例子吗?

Check this example that worked for me until rc4 (didn't check in newer versions): 检查这个适用于我的示例,直到rc4(没有检查更新的版本):

form markup 表格标记

  ngOnInit() {
    this.myForm = this.formBuilder.group({
    'loginCredentials': this.formBuilder.group({
    'login': ['', Validators.required],
    'email': ['',  [Validators.required, customValidator]],
    'password': ['',  Validators.required]
   }),
    'hobbies': this.formBuilder.array([
      this.formBuilder.group({
        'hobby': ['', Validators.required]
      })
    ])
  });
}

removeHobby(index: number){
    (<FormArray>this.myForm.find('hobbies')).removeAt(index);
  }

  onAddHobby() {
    (<FormArray>this.myForm.find('hobbies')).push(new FormGroup({
      'hobby': new FormControl('', Validators.required)
    }))
  }

html markup HTML标记

<h3>Register page</h3>
<form [formGroup]="myForm" (ngSubmit)="onSubmit()">
  <div formGroupName="loginCredentials">
    <div class="form-group">
      <div>
        <label for="login">Login</label>
        <input  id="login" type="text" class="form-control" formControlName="login">
  </div>
  <div>
    <label for="email">Email</label>
    <input  id="email" type="text" class="form-control"  formControlName="email">
  </div>
  <div>
    <label for="password">Password</label>
    <input  id="password" type="text" class="form-control"  formControlName="password">
      </div>
    </div>
  </div>
  <div class="row" >
    <div  formGroupName="hobbies">
      <div class="form-group">
        <label>Hobbies array:</label>
        <div  *ngFor="let hobby of myForm.find('hobbies').controls; let i = index">
          <div formGroupName="{{i}}">
            <input id="hobby_{{i}}" type="text" class="form-control"  formControlName="hobby">
            <button *ngIf="myForm.find('hobbies').length > 1" (click)="removeHobby(i)">x</button>
          </div>
        </div>
        <button (click)="onAddHobby()">Add hobby</button>
      </div>
    </div>
  </div>
  <button type="submit" [disabled]="!myForm.valid">Submit</button>
</form>

Remarks 备注

this.myForm = this.formBuilder.group

creates a form object with user's configuration and assigns it to this.myForm variable. 使用用户的配置创建一个表单对象,并将其分配给this.myForm变量。


'loginCredentials': this.formBuilder.group

method creates a group of controls which consist of a formControlName eg. method创建一组控件,由一个formControlName组成。 login and value ['', Validators.required], where the first parameter is the initial value of the form input and the secons is a validator or an array of validators as in 'email': ['', [Validators.required, customValidator]], . login和value ['', Validators.required],其中第一个参数是表单输入的初始值,secons是验证器或验证器数组,如'email': ['', [Validators.required, customValidator]], .


'hobbies': this.formBuilder.array

Creates an array of groups where the index of the group is formGroupName in the array and is accessed like : 创建一个组数组,其中组的索引是数组中的formGroupName ,访问方式如下:

<div *ngFor="let hobby of myForm.find('hobbies').controls; let i = index">
<div formGroupName="{{i}}">...</div>
</div>

onAddHobby() {
(<FormArray>this.myForm.find('hobbies')).push(new FormGroup({
'hobby': new FormControl('', Validators.required)
}))
}

this sample method adds new formGroup to the array. 此示例方法将新formGroup添加到数组中。 Currently accessing requires specifing the type of control we want to access, in this example this type is : <FormArray> 当前访问需要指定我们想要访问的控件类型,在此示例中,此类型为: <FormArray>


removeHobby(index: number){
(<FormArray>this.myForm.find('hobbies')).removeAt(index);
}

same rules as above apply to removing a specific form control from the array 与上述相同的规则适用于从数组中删除特定的表单控件

Nested Form with nested ARRAY 嵌套表格与嵌套ARRAY

Plunker : https://plnkr.co/edit/sUjE1ULYhfDHLNBw2sRv?p=info Scotch.IO : https://scotch.io/tutorials/how-to-build-nested-model-driven-forms-in-angular-2 Plunker: https://plnkr.co/edit/sUjE1ULYhfDHLNBw2sRv?p=info Scotch.IO: https://scotch.io/tutorials/how-to-build-nested-model-driven-forms-in-angular-2

I think your error is in 我认为你的错误在于

addModifier() {
  const control = <FormArray>this.myForm.controls['global_modifier'];
  control.push(this.initGlobalModifiers());
}

you should push to your Form/FormGroup object not to control. 你应该推送你的Form / FormGroup对象不要控制。 See the PLUNKER to see the working example. 请参阅PLUNKER以查看工作示例。

correct adding method : 正确的添加方法:

  addAddress() {
        const control = <FormArray>this.myForm.controls['addresses'];
        control.push(this.initAddress());
    }

Nested Form with nested OBJECTS 具有嵌套OBJECTS的嵌套表单

 <form [formGroup]="myForm">
          <div formGroupName="address">
          <fieldset class="form-group">
                  <label>Street</label>
                  <input name="ulica" formControlName="street">
                  <label>City</label>
                  <input name="miasto" formControlName="city">
          </fieldset>
                      <label>Corresponding Address</label>
                      <fieldset class="form-group" formGroupName="correspondingAddress">
                         <label>Street</label>
                         <input name="ulica" formControlName="steet">
                         <label>City</label>
                         <input name="miasto" formControlName="city">
                      </fieldset>
           </div>
            </form>

... ...

 ngOnInit() {
    this.myForm = this._fb.group({
      address: this._fb.group({
        street : [''],
        city: [''],
        correspondingAddress: this._fb.group({
          street : [''],
          city: ['']
        })
      })
    });
  }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM