Angular模板表单校验方法详解
本文实例为大家分享了Angular模板表单校验的方法,供大家参考,具体内容如下
1.创建指令
nggdirectivedirectives/mobileValidator
2.html
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;
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。