gpt4 book ai didi

FormArray 中的 Angular2 patchValue

转载 作者:太空狗 更新时间:2023-10-29 18:02:06 27 4
gpt4 key购买 nike

正如我之前在 question 中询问的那样

我想创建一个嵌套表单,其中父级与 child 的 formControlNames

无关

假设我们有一个组件 componentA.component.ts

@Component({
selector: 'common-a',
template: `
<div [formGroup]="parentForm">
<div class="form-group">
<label>Common A[1]</label>
<div >
<input type="text" formControlName="valueA1">
<small>Description 1</small>
</div>
<div class="form-group">
<label>Common A[2]</label>
<div >
<input type="text" formControlName="valueA2">
<small>Description 2</small>
</div>
</div>
`
})


export class ComponentA implements OnInit{
@Input() parentForm: FormGroup;


constructor(private _fb: FormBuilder) {
}

ngOnInit() {

this.parentForm.addControl("valueA1", new FormControl('', Validators.required));
this.parentForm.addControl("valueA2", new FormControl('', Validators.required));
}
}

和主要成分。

@Component({
selector: 'main',
template: `
<form [formGroup]="myForm" (ngSubmit)="onSubmit(myForm.value)">
<div>
<div *ngFor="let c of myForm.controls.componentA.controls; let i=index" class="form-group">
<common-a [parentForm]="c"></common-a>
</div>
<div>
<button type="submit" [disabled]="myForm.invalid">Register!</button>
<a class="button" (click)="add_component()">Add New</a>
<a class="button" (click)="delete_component()">Delete</a>
</div>
</div>
<pre>form value: <br>{{myForm.value | json}}</pre>
</form>
`
})
export class MainComponent implements OnInit{
@Input('group') public myForm: FormGroup;

add_component() {
const control = <FormArray>this.myForm.controls['componentA'];
control.push(this._fb.group({}));
}

delete_component() {
const control = <FormArray>this.myForm.controls['componentA'];
control.removeAt(this.myForm.length-1);
}

constructor(private _fb: FormBuilder) {
}

ngOnInit() {
this.myForm = this._fb.group({
componentA : this._fb.array([this._fb.group({})])
});
}

onSubmit(formValue) {
console.log(formValue);
}
}

我现在的问题是如何使用 patchValue 从服务器端点获取数据并填充表单数组的值,按需创建新的 FormGroups,始终不可知给家长。

  1. 我认为可以做到这一点的一种方法是父级生成新组。

除了糟糕的架构之外,这种方法的问题在于我用自己的实现重写了 patchValue 方法并按需推送这些新组,因为在函数体内我知道有多少,但是 child 的 OnInit不会在函数内调用,将值留空。

var self = this;
this.formArray.patchValue = (value: {[key: string]: any}, {onlySelf, emitEvent}: {onlySelf?: boolean, emitEvent?: boolean} = {}) =>{
for(var i = 0; i < Object.keys(value).length; i++ ) {
self.add_new();
}
Object.keys(value).forEach(name => {
if (self.formArray.controls[name]) {
self.formArray.controls[name].patchValue(value[name], {onlySelf: true, emitEvent});
}
});
self.formArray.updateValueAndValidity({onlySelf, emitEvent});
}
  1. 另一种选择是让 child 提供一个静态函数来公开其内部组成。

我再次认为这是糟糕的设计。

static generate() {
return new FormGroup({
valueA1: new FormControl('', Validators.required),
valueA2: new FormControl('', Validators.required)
});
}

对于此类问题,您有任何干净的解决方案吗?

还有一个有效的 plunkr根据我之前的问题

最佳答案

动态控件的替代解决方案。

1: 注入(inject) ChangeDetectorRef

constructor(private _changeDetectorRef: ChangeDetectorRef) { }

2:覆盖补丁值

    this.control = new FormArray([]);
let patchValue = this.control.patchValue;
this.control.patchValue = (value: any, options?: Object) => {
for (let i = this.control.length; i < value.length; i++) {
// Push new item
}

this._changeDetectorRef.detectChanges();
patchValue.apply(this.control, [value, options]);
};

关于FormArray 中的 Angular2 patchValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41464596/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com