打印活动表格验证器的最小长度

时间:2018-12-15 11:22:27

标签: angular

如何获取表格中的最小长度值?

<div *ngIf="dataForm.get('description').hasError('minlength') && dataForm.get('description').touched">
   The product description minimum length is {{ dataForm.controls.description.minlength }}.
</div>

我尝试了dataForm.controls.description.minlength,但它什么也没打印。

1 个答案:

答案 0 :(得分:1)

dataForm.get('description').getError('minlength').requiredLength

无耻的插件:我强烈建议您避免对表进行硬编码并重复所有这些检查,而应使用ngx-valdemort