在angular2中设置无效的无效表单控件

前端之家收集整理的这篇文章主要介绍了在angular2中设置无效的无效表单控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在angular2中设置为无效的表单控件? (用过的表单构建器)

eg. i have form-> exampleFrom & field-> exampleControl

我试过这个,没有成功:

this.exampleFrom.controls['exampleControl'].invalid
尝试
let control = this.exampleFrom.controls['exampleControl'];
control.setErrors({backend: {someProp: "Backend message"}});
let message = control.errors['backend'].someProp;
原文链接:https://www.f2er.com/angularjs/240435.html

猜你在找的Angularjs相关文章