以 angular2 模型驱动形式重用组件
Reuse components in angular2 model driven forms
我是 angular2 的新手,在过去的几天里,我一直在尝试使用模型驱动的表单创建可重用的表单组件
假设我们有一个组件 componentA.component.ts
@Component({
selector: 'common-a',
template: `
<div [formGroup]="_metadataIdentifier">
<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('group')
public myForm: FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm = this._fb.group({
valueA1 : ['', [Validators.required]],
valueA2 : ['', [Validators.required]],
});
}
}
和组件 B componentB.component.ts
@Component({
selector: 'common-b',
template: `
<div [formGroup]="_metadataIdentifier">
<div class="form-group">
<label>Common B</label>
<div>
<input type="text" formControlName="valueB">
<small>Description</small>
</div>
</div>
`
})
export class ComponentB implements OnInit{
@Input('group')
public myForm: FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm= this._fb.group({
valueB : ['', [Validators.required]]
});
}
}
我的问题是如何在不将输入控件移至主组件的情况下使用这两个子组件组成一个表单。
例如 main.component.ts
@Component({
selector: 'main',
template: `
<form [formGroup]="myForm" (ngSubmit)="onSubmit(myForm.value)">
<div>
<common-a [group]="formA"></common-a>
<common-b [group]="formB"></common-b>
<div>
<button>Register!</button>
</div>
</div>
</form>
`
})
export class Main implements OnInit{
@Input('group')
public myForm: FormGroup;
public formA : FormGroup;
public formB : FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm = this._fb.group({
//how can I compose these two sub forms here
//leaving the form control names agnostic to this component
});
}
}
这个想法背后的概念是构建许多复杂的表单,共享它们的一些构建基块。
也就是说,我不希望我的 Main
组件知道 formControlNames
[valueA1
,valueA2
,valueB
] 的名称但会自动将它们和 update/validate 插入到顶级表单组中。
任何想法或指向正确方向的观点都会有所帮助。
这可以通过将我们的顶级 FormGroup
传递给子组件并让子组件使用 formGroupName
将其自身添加到更高级别 FormGroup
来实现级别 FormGroup
需要对较低级别基本上一无所知:
main.component.ts
template: `<...>
<common-a [parentForm]="myForm"></common-a>
<...>
我们还将删除不再使用的 formA、formB 声明。
component-a.component.ts [formGroup]
是我们的父组,formGroupName
是我们将组件的控件识别和附加为一个组的方式在更大的整体中工作(它们将嵌套在父组中)。
@Component({<...>
template: `
<div [formGroup]="parentForm">
<div class="form-group">
<label>Common A[1]</label>
<div formGroupName="componentAForm">
<input type="text" formControlName="valueA1">
<small>Description 1</small>
</div>
<div class="form-group">
<label>Common A[2]</label>
<div formGroupName="componentAForm">
<input type="text" formControlName="valueA2">
<small>Description 2</small>
</div>
</div>`
})
export class ComponentA implements OnInit {
@Input() parentForm: FormGroup;
componentAForm: FormGroup;
constructor(private _fb: FormBuilder) {}
ngOnInit() {
this.componentAForm = this._fb.group({
valueA1: ['', Validators.required],
valueA2: ['', Validators.required]
});
this.parentForm.addControl("componentAForm", this.componentAForm);
}
}
这里是一个plunker (注意我在这里让组件B更动态一点只是为了看看它是否可以完成,但是上面的实现同样适用于B) : http://plnkr.co/edit/fYP10D45pCqiCDPnZm0u?p=preview
我是 angular2 的新手,在过去的几天里,我一直在尝试使用模型驱动的表单创建可重用的表单组件
假设我们有一个组件 componentA.component.ts
@Component({
selector: 'common-a',
template: `
<div [formGroup]="_metadataIdentifier">
<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('group')
public myForm: FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm = this._fb.group({
valueA1 : ['', [Validators.required]],
valueA2 : ['', [Validators.required]],
});
}
}
和组件 B componentB.component.ts
@Component({
selector: 'common-b',
template: `
<div [formGroup]="_metadataIdentifier">
<div class="form-group">
<label>Common B</label>
<div>
<input type="text" formControlName="valueB">
<small>Description</small>
</div>
</div>
`
})
export class ComponentB implements OnInit{
@Input('group')
public myForm: FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm= this._fb.group({
valueB : ['', [Validators.required]]
});
}
}
我的问题是如何在不将输入控件移至主组件的情况下使用这两个子组件组成一个表单。
例如 main.component.ts
@Component({
selector: 'main',
template: `
<form [formGroup]="myForm" (ngSubmit)="onSubmit(myForm.value)">
<div>
<common-a [group]="formA"></common-a>
<common-b [group]="formB"></common-b>
<div>
<button>Register!</button>
</div>
</div>
</form>
`
})
export class Main implements OnInit{
@Input('group')
public myForm: FormGroup;
public formA : FormGroup;
public formB : FormGroup;
constructor(private _fb: FormBuilder) {
}
ngOnInit() {
this.myForm = this._fb.group({
//how can I compose these two sub forms here
//leaving the form control names agnostic to this component
});
}
}
这个想法背后的概念是构建许多复杂的表单,共享它们的一些构建基块。
也就是说,我不希望我的 Main
组件知道 formControlNames
[valueA1
,valueA2
,valueB
] 的名称但会自动将它们和 update/validate 插入到顶级表单组中。
任何想法或指向正确方向的观点都会有所帮助。
这可以通过将我们的顶级 FormGroup
传递给子组件并让子组件使用 formGroupName
将其自身添加到更高级别 FormGroup
来实现级别 FormGroup
需要对较低级别基本上一无所知:
main.component.ts
template: `<...>
<common-a [parentForm]="myForm"></common-a>
<...>
我们还将删除不再使用的 formA、formB 声明。
component-a.component.ts [formGroup]
是我们的父组,formGroupName
是我们将组件的控件识别和附加为一个组的方式在更大的整体中工作(它们将嵌套在父组中)。
@Component({<...>
template: `
<div [formGroup]="parentForm">
<div class="form-group">
<label>Common A[1]</label>
<div formGroupName="componentAForm">
<input type="text" formControlName="valueA1">
<small>Description 1</small>
</div>
<div class="form-group">
<label>Common A[2]</label>
<div formGroupName="componentAForm">
<input type="text" formControlName="valueA2">
<small>Description 2</small>
</div>
</div>`
})
export class ComponentA implements OnInit {
@Input() parentForm: FormGroup;
componentAForm: FormGroup;
constructor(private _fb: FormBuilder) {}
ngOnInit() {
this.componentAForm = this._fb.group({
valueA1: ['', Validators.required],
valueA2: ['', Validators.required]
});
this.parentForm.addControl("componentAForm", this.componentAForm);
}
}
这里是一个plunker (注意我在这里让组件B更动态一点只是为了看看它是否可以完成,但是上面的实现同样适用于B) : http://plnkr.co/edit/fYP10D45pCqiCDPnZm0u?p=preview