gpt4 book ai didi

javascript - Angular Material 对话框预填充输入字段不验证

转载 作者:行者123 更新时间:2023-11-30 20:12:16 26 4
gpt4 key购买 nike

我有一个 mat-dialog,可以从(mat-)表中的编辑按钮打开。当对话框打开时,它会获取传递的数据以填充一些输入字段。
其中一个输入已通过不能为空的规则进行验证。

我的问题是接收自动填充值的输入元素根本不被 Angular 识别为具有值(它在网络检查器和屏幕上有一个“值”)。

这意味着在用户通过删除并重新输入字符或键入新内容来编辑字段之前,“保存”按钮将保持灰色。并非所有字段都需要编辑,如果它们收到一个值,则该值是有效的。

那么我怎样才能通过验证来识别输入字段不是空的,而且它确实有一个值? (我不能只删除验证的原因是它必须有一个值,即 != '')。

因此,除非用户输入一开始为空或用户删除了输入,否则验证应该通过。或者换句话说,如果在对话框打开时输入接收到一个值,并且用户不理会它,则验证应该通过。

未被识别的自动填充值的副作用是,如果数字未更改,则会将其作为空值发布到后端。因此,当数据在 View 中刷新时,一个 30 且未被用户编辑的数字现在为 0。这是因为表单正在显示自动填充的数据,但不知何故 Angular 并没有“看到”它。

简单的输入:

  <div class="form">
<mat-form-field>
<input matInput #input
class="form-control"
placeholder="Name"
[(ngModel)]="data.name"
name="name"
selected="data.name"
required
[value]="this.getFunc?.name"
>
<mat-error *ngIf="data.name == ''">{{getErrorMessage()}}</mat-error>
</mat-form-field>
</div>

不确定要从此处的 component.ts 文件中显示什么(?!)
在父组件中使用 dialogRef.componentInstance = foo.bar;,对话框在输入字段中获取正确的值,如果用户删除并重新输入一个值,正确的值将通过应用程序接口(interface)。

问题是 Angular 无法“看到”输入。
尝试了很多不同的东西,包括 SO/here 上的所有其他答案。
对不起,文本太长,代码太少,但是没有任何东西可以说明 angular 如何无法识别输入字段包含一个值。

最佳答案

我为这个问题的答案搜索了很长时间,我认为我有“正确”的方法(至少其中之一)。所以我会把它贴在这里:

首先,我将表单更改为在表单元素中使用“formGroup”,如下所示:

<form class="mat-dialog-content" (ngSubmit)="submit()" #formControl="ngForm" [formGroup]="patchForm">
<div class="form">
<mat-form-field>
<input matInput #input
class="form-control"
placeholder="name"
name="name"
formControlName="name"
id="name"
selected="data.name"
required
>
<mat-error *ngIf="data.name== ''">{{getErrorMessage()}}</mat-error>
</mat-form-field>
</div>
[... repeat div class="form" blocks for other inputs/dropdowns etc ...]

请注意,我必须从所有表单字段元素中删除 [(ngModel)]="someVal"。如果您尝试将它们与 formGroup 一起使用,Angular 会抛出一个不稳定的问题。

现在添加您在上面的代码中看到的元素属性 formControlName="name"

然后我必须添加到 app.module.ts ReactiveFormsModule:

import { FormsModule, ReactiveFormsModule } from '@angular/forms';

并将其添加到同一文件的导入数组中:

 imports: [
BrowserModule,
...
FormsModule,
ReactiveFormsModule
],

component.ts 文件中,我根据此处的文档设置了 [formGroup]="patchForm" https://angular.io/api/forms/FormGroup#setvalue
我的对话框中有 3 个字段:

  patchForm = new FormGroup({
age: new FormControl(),
name: new FormControl(),
numberLegs: new FormControl()
});

因此,formControl 需要一个与表单对应的对象。在我的 onInit 函数中,我调用了 API 以获取我想要填充表单的数据,因此在该订阅者内部,我正在使用 patchValue() 方法 Angular 设置值:

this.projectService.getProjectFunction(this.projId, this.rowId).subscribe(x=> { 
this.fetchedProjFunc = x;
// patchFrom expects an object matching to the formgroup, field by field.
this.patchForm.patchValue({
age: this.fetchedProjFunc['age'],
name: this.fetchedProjFunc['name'],
numberLegs: this.fetchedProjFunc['numberLegs']
});
});

这似乎奏效了。然后我必须在返回对象中设置我返回到 API/数据库的对象的值以指向正确的值,因此当用户单击“保存”按钮时,它会调用包含该对象的“confirmPut”函数要发送的数据,如下所示:

 public confirmPut(): void {
this.projectFunction = {
...
name: this.patchForm.value['name'],
...

依次调用执行 PUT 到 API 的函数。

我想就是这样,该表单按预期针对空字符串和缺失值进行了验证。

如果我遗漏了什么并且有人读过这篇文章,请告诉我...:)

关于javascript - Angular Material 对话框预填充输入字段不验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52283879/

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