是否可以使用反应形式使用一种单一形式并将其用于所有其他组件?
我正在制作一个基本的CRUD应用程序,并且运行良好。问题在于每个组件都有其自己的模板,但是我想使用相同的表单来创建客户信息,并使用与引导模态相同的表单来更新客户信息。
我是新手,无法解决问题。
我创建了一个反应形式组件组件,该组件具有反应形式的html。但是我不知道如何在每个组件中重用它们。
答案 0 :(得分:2)
是的,您可以将任何元素添加到[formGroup]="form"
中,这将是该表单的一部分。它也适用于子组。您应该输入@Input() form: FormGroup
。
与输入字段相同的组件中的任何父HTML元素都可以输入formGroup
。
答案 1 :(得分:2)
示例CRUD带有排序列表:https://sorting-list-angular.web.app/library 整个应用程序的Git:https://bitbucket.org/mises543/sorting-list/src/master/
这是一个简单的应用程序,其中的NGXS是一个矫kill过正,但我正在学习。这是数据状态管理。最好叫Redux。
您可以研究它。
模板:
<div class="add-item-container">
<mat-label>
<h2>Add Media</h2>
</mat-label>
<section>
<mat-form-field>
<input matInput placeholder="Enter title:" type="text" [formControl]='title' required>
<mat-error *ngIf="title.invalid && !''">{{getErrorTitle()}}</mat-error>
</mat-form-field>
<mat-form-field>
<mat-select matInput placeholder="Category:" [formControl]="category" required>
<ng-container *ngFor="let category of categories">
<mat-option *ngIf="category != 'All'" [value]="category">{{category}}</mat-option>
</ng-container>
</mat-select>
<mat-error *ngIf="category.invalid && !''">{{getErrorCategory()}}</mat-error>
</mat-form-field>
<mat-form-field>
<input matInput [matDatepicker]="picker1" placeholder="Upload Date:" [formControl]="uploaded">
<mat-datepicker-toggle matSuffix [for]="picker1"></mat-datepicker-toggle>
<mat-datepicker #picker1></mat-datepicker>
</mat-form-field>
<div class="buttons">
<ng-container *ngIf="data; then update; else add"></ng-container>
<ng-template #add>
<button mat-raised-button color="primary" (click)="onAdd()" [disabled]="title.invalid || category.invalid">Add
item</button>
</ng-template>
<ng-template #update>
<button mat-raised-button color="primary" (click)="onUpdate()"
[disabled]="title.invalid || category.invalid">Update
item</button>
</ng-template>
<button mat-raised-button color="primary" (click)="onCancel()">Cancel</button>
</div>
</section>
</div>
模板中最重要的是按钮,因此当有来自父组件的输入数据时显示按钮“更新”,而在没有任何数据时显示按钮:
<ng-container *ngIf="data; then update; else add"></ng-container>
<ng-template #add>
<button mat-raised-button color="primary" (click)="onAdd()" [disabled]="title.invalid || category.invalid">Add
item</button>
</ng-template>
<ng-template #update>
<button mat-raised-button color="primary" (click)="onUpdate()"
[disabled]="title.invalid || category.invalid">Update
item</button>
</ng-template>
form.component.ts im使用@ angular / material库,以防弹出对话框:
categories = MediaOptions.CATEGORIES
uploaded = new FormControl(new Date(), [Validators.required])
title = new FormControl('', [Validators.minLength(5), Validators.required])
category = new FormControl('', [Validators.required])
constructor(private store: Store,
private snackBar: SnackService,
public dialogRef: MatDialogRef<AddItemComponent>,
@Inject(MAT_DIALOG_DATA) public data?: any) {}
ngOnInit(): void {
if(this.data) {
this.title.setValue(this.data.title)
this.category.setValue(this.data.category)
this.uploaded.setValue(this.data.uploaded)
} else {
this.uploaded.setValue(new Date())
}
}
具有打开对话框功能的父组件:
constructor(private store: Store, private snackBar: SnackService, private dialog: MatDialog) { }
async ngOnInit() {
this.store.dispatch(new GetMedia())
}
editItem(payload: any) {
this.dialog.open(AddItemComponent,
{ width: '500px', data: payload });
}
addItem() {
this.dialog.open(AddItemComponent,
{ width: '500px' });
}