Angular模板表单校验方法详解
本文实例为大家分享了Angular模板表单校验的方法,供大家参考,具体内容如下
1. 创建指令
ng g directive directives/mobileValidator
2. html
<form #myForm="ngForm" (ngSubmit)="onSubmit2(myForm.value, myForm.valid)">
<div>
<h3>登录</h3>
</div>
<div>用户名:<input ngModel required name="username" type="text" (input)="onMobileInput(myForm)"></div>
<div [hidden]="mobileValid || moblieUntouched">
<div [hidden]="!myForm.form.hasError('required','username')">
用户名是必填项
</div>
</div>
<div>电话: <input ngModel mobile name="mobile" type="text"></div>
<button type="submit">登录</button>
</form>3. 控制器
mobileValid: boolean = true;
moblieUntouched: boolean = true;
onMobileInput(form: NgForm) {
if (form) {
this.mobileValid = form.form.get('mobile').valid;
this.moblieUntouched = form.form.get('mobile').untouched;
}
} 相关推荐
liduote 2020-06-16
阿斌Elements 2020-06-11
xxuncle 2020-06-05
ChinaGuanq 2020-06-05
wanghongsha 2020-03-26
csm0 2020-03-05
shyoushine 2020-02-25
electronvolt 2020-02-12
jsonwoo 2020-01-20
ZadarrienChina 2020-01-07
wwwxuewen 2020-01-04
dynsxyc 2020-01-03
liangjielaoshi 2019-12-27
bowean 2019-12-27
wwwxuewen 2019-12-25
liwusen 2019-12-16
颤抖吧腿子 2019-12-16