我有这个代码,在我的表单上显示错误
<input [ngFormControl]="form1.controls['thing']" type="text" id="thing" #thing="ngForm">
<div *ngIf='thing.dirty && !thing.valid'>
<div class="err" *ngIf='thing.errors.required'>
Thing is required.
</div >
<div class="err" *ngIf='thing.errors.invalid'>
Thing is invalid.
</div >
</div>
但是如果thing
中有两个错误,则会出现两个错误。
让我们说如果我的输入有5 validators
,那么5 divs
将显示哪个不好。
如何一次只显示一个error div
?
答案 0 :(得分:8)
您可以创建自定义管道以获取验证程序的错误对象的第一个元素:
@Pipe({
name: 'first'
})
export class FirstKeyPipe {
transform(obj) {
var keys = Object.keys(obj);
if (keys && keys.length>0) {
return keys[0];
}
return null;
}
}
这样您就只能显示一个错误:
@Component({
selector: 'my-app',
template: `
<form>
<input [ngFormControl]="form.controls.input1">
<div *ngIf="form.controls.input1.errors">
<div *ngIf="(form.controls.input1.errors | first)==='required'">
Required
</div>
<div *ngIf="(form.controls.input1.errors | first)==='custom'">
Custom
</div>
</div>
</form>
`,
pipes: [ FirstKeyPipe ]
})
export class MyFormComponent {
constructor(private fb:FormBuilder) {
this.form = fb.group({
input1: ['', Validators.compose([Validators.required, customValidator])]
});
}
}
请参阅此plunkr:https://plnkr.co/edit/c0CqOGuzvFHHh5K4XNnA?p=preview。
注意:同意Günter创建可用组件;-)有关详细信息,请参阅此文章:
答案 1 :(得分:3)
<input [ngFormControl]="form1.controls['thing']" type="text" id="thing" #thing="ngForm">
<div *ngIf='thing.dirty && !thing.valid'>
<div class="err" *ngIf='thing.errors.required'>
Thing is required.
</div >
<div class="err" *ngIf='!thing.errors.required && thing.errors.ivalid'>
Thing is invalid.
</div >
</div>
您可以创建一个可重复使用的组件来显示错误,这样您就不必一次又一次地重复此代码。
答案 2 :(得分:2)
如果您的错误消息块具有一致的标记,则可以使用CSS仅显示第一条消息并隐藏其余消息:
css
.message-block .error-message {
// Hidden by default
display: none;
}
.message-block .error-message:first-child {
display: block;
}
标记
<div class="message-block">
<span class="error-message" *ngIf="myForm.get('email').hasError('required')">
Email is required (first-child of message block is displayed)
</span>
<span class="error-message" *ngIf="myForm.get('email').hasError('email')">
Invalid email format (error message hidden by default)
</span>
</div>
答案 3 :(得分:1)
这有效,您不必像上面的@Joes答案一样在模板中对验证进行硬编码。
Template:
<input id="password" placeholder="Password" type="password" formControlName="password" [(ngModel)]="password" [ngClass]="{'invalid-input': !formUserDetails.get('password').valid && formUserDetails.get('password').touched}">
<div class="validation-container">
<ng-container *ngFor="let validation of userValidationMessages.password">
<div class="invalid-message" *ngIf="formUserDetails.get('password').hasError(validation.type) && formUserDetails.get('password').touched">
{{validation.message}}
</div>
</ng-container>
</div>
CSS:
.validation-container div {
display: none;
}
.validation-container div:first-child {
display: block;
}
答案 4 :(得分:0)
Angular2 会检查控件的状态并做出相应的反应。因此,如果您不希望一次进行更多验证,则可以使用 AND(&&)
或/和 OR(||)
进行逻辑播放,或者/和 NOT(!)
运营商。
答案 5 :(得分:0)
您可以创建一个Custom Pipe
来检查第一个错误是否等于指定的错误:
CUSTOM PIPE
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'equals'
})
export class Equals implements PipeTransform {
transform(errors: any, error: any, args?: any): any {
if (!errors)
return false;
const array = Object.keys(errors);
if (array && array.length > 0)
return errors[array[0]] === error;
return false;
}
}
你可以有很多错误div,但只会显示一个错误:
// input is form.controls.input1
<div *ngIf="input.errors | equals:input.errors.required">Required</div>
<div *ngIf="input.errors | equals:input.errors.maxlength">MaxLength</div>
<div *ngIf="input.errors | equals:input.errors.pattern">Pattern</div>