要在不同组件中使用同一个表单组,可以使用Angular的表单模块和服务来实现。以下是一个示例代码,演示了如何在不同组件之间共享表单组。
首先,在app.module.ts文件中导入FormsModule和ReactiveFormsModule模块:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
@NgModule({
declarations: [
// ...
],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
接下来,创建一个表单服务来存储和共享表单数据。在一个新的form.service.ts文件中,编写以下代码:
import { Injectable } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';
@Injectable({
providedIn: 'root'
})
export class FormService {
form: FormGroup;
constructor() {
this.form = new FormGroup({
name: new FormControl(''),
email: new FormControl('')
});
}
}
然后,在两个组件中注入表单服务,并使用表单服务中的表单对象。
在第一个组件中,例如component1.component.ts文件中,编写以下代码:
import { Component, OnInit } from '@angular/core';
import { FormService } from '../form.service';
@Component({
selector: 'app-component1',
templateUrl: './component1.component.html',
styleUrls: ['./component1.component.css']
})
export class Component1Component implements OnInit {
constructor(private formService: FormService) { }
ngOnInit() { }
onSubmit() {
console.log(this.formService.form.value);
}
}
在第二个组件中,例如component2.component.ts文件中,编写以下代码:
import { Component, OnInit } from '@angular/core';
import { FormService } from '../form.service';
@Component({
selector: 'app-component2',
templateUrl: './component2.component.html',
styleUrls: ['./component2.component.css']
})
export class Component2Component implements OnInit {
constructor(private formService: FormService) { }
ngOnInit() { }
onSubmit() {
console.log(this.formService.form.value);
}
}
最后,在两个组件的HTML模板中,使用表单服务中的表单对象来绑定输入框和提交按钮。
在component1.component.html文件中,编写以下代码:
在component2.component.html文件中,编写以下代码:
现在,无论在哪个组件中修改表单数据并提交表单,表单服务中的表单对象都会被更新,并且可以在任何组件中访问和使用该表单数据。