我有一个简单的表单需要验证输入的开头和结尾是否不是空格。
在HTML5中,我会这样做:
<input type="text" pattern="^(?!\s|.*\s$).*$">
新Angular 2 ngControl指令中验证模式的正确属性是什么?官方Beta API仍缺乏此问题的文档。
答案 0 :(得分:48)
现在,您不需要使用FormBuilder
以及所有这些复杂的valiation角度内容。我从中提出了更多细节(Angular 2.0.8 - 3march2016):
https://github.com/angular/angular/commit/38cb526
回购示例:
<input [ngControl]="fullName" pattern="[a-zA-Z ]*">
我测试它并且它可以工作:) - 这是我的代码:
<form (ngSubmit)="onSubmit(room)" #roomForm='ngForm' >
...
<input
id='room-capacity'
type="text"
class="form-control"
[(ngModel)]='room.capacity'
ngControl="capacity"
required
pattern="[0-9]+"
#capacity='ngForm'>
验证仅在服务器端进行。如果出现问题,则服务器返回错误代码,例如HTTP 400,并在响应正文中跟随json对象(例如):
this.err = {
"capacity" : "too_small"
"filed_name" : "error_name",
"field2_name" : "other_error_name",
...
}
在html模板中,我使用单独的标签(div / span / small等)
<input [(ngModel)]='room.capacity' ...>
<small *ngIf="err.capacity" ...>{{ translate(err.capacity) }}</small>
如果在&#39;容量&#39;是错误然后标签与msg翻译将是可见的。这种方法具有以下优点:
<small>
标记)当然,如果前端需要验证(例如,注册时retypePassword
字段永远不会发送到服务器),我有时会例外。
答案 1 :(得分:10)
从版本2.0.0-beta.8(2016-03-02)开始,Angular现在包含一个Validators.pattern
正则表达式验证器。
请参阅CHANGELOG
答案 2 :(得分:8)
您可以使用FormBuilder构建表单,因为它可以让您更灵活地配置表单。
export class MyComp {
form: ControlGroup;
constructor(@Inject()fb: FormBuilder) {
this.form = fb.group({
foo: ['', MyValidators.regex(/^(?!\s|.*\s$).*$/)]
});
}
然后在你的模板中:
<input type="text" ngControl="foo" />
<div *ngIf="!form.foo.valid">Please correct foo entry !</div>
您还可以自定义ng-invalid CSS class。
由于实际上没有正则表达式的验证器,你必须自己编写。它是一个简单的函数,它在输入中获取一个控件,如果有效则返回null,如果无效则返回StringMap。
export class MyValidators {
static regex(pattern: string): Function {
return (control: Control): {[key: string]: any} => {
return control.value.match(pattern) ? null : {pattern: true};
};
}
}
希望它对你有所帮助。
答案 3 :(得分:5)
逐步自定义验证
Html模板
<form [ngFormModel]="demoForm">
<input
name="NotAllowSpecialCharacters"
type="text"
#demo="ngForm"
[ngFormControl] ="demoForm.controls['spec']"
>
<div class='error' *ngIf="demo.control.touched">
<div *ngIf="demo.control.hasError('required')"> field is required.</div>
<div *ngIf="demo.control.hasError('invalidChar')">Special Characters are not Allowed</div>
</div>
</form>
组件App.ts
import {Control, ControlGroup, FormBuilder, Validators, NgForm, NgClass} from 'angular2/common';
import {CustomValidator} from '../../yourServices/validatorService';
在课堂上 定义
demoForm: ControlGroup;
constructor( @Inject(FormBuilder) private Fb: FormBuilder ) {
this.demoForm = Fb.group({
spec: new Control('', Validators.compose([Validators.required, CustomValidator.specialCharValidator])),
})
}
{{strong> ../../ yourServices / validatorService.ts }下
export class CustomValidator {
static specialCharValidator(control: Control): { [key: string]: any } {
if (control.value) {
if (!control.value.match(/[-!$%^&*()_+|~=`{}\[\]:";#@'<>?,.\/]/)) {
return null;
}
else {
return { 'invalidChar': true };
}
}
}
}
答案 4 :(得分:1)
My solution with Angular 4.0.1: Just showing the UI for required CVC input - where the CVC must be exactly 3 digits:
<form #paymentCardForm="ngForm">
...
<md-input-container align="start">
<input #cvc2="ngModel" mdInput type="text" id="cvc2" name="cvc2" minlength="3" maxlength="3" placeholder="CVC" [(ngModel)]="paymentCard.cvc2" [disabled]="isBusy" pattern="\d{3}" required />
<md-hint *ngIf="cvc2.errors && (cvc2.touched || submitted)" class="validation-result">
<span [hidden]="!cvc2.errors.required && cvc2.dirty">
CVC is required.
</span>
<span [hidden]="!cvc2.errors.minlength && !cvc2.errors.maxlength && !cvc2.errors.pattern">
CVC must be 3 numbers.
</span>
</md-hint>
</md-input-container>
...
<button type="submit" md-raised-button color="primary" (click)="confirm($event, paymentCardForm.value)" [disabled]="isBusy || !paymentCardForm.valid">Confirm</button>
</form>
答案 5 :(得分:-1)
没有make验证模式,您可以使用这些模块轻松裁剪开始和结束空格。
https://www.npmjs.com/package/ngx-trim-directive https://www.npmjs.com/package/ng2-trim-directive
谢谢。