如何获取表格中的最小长度值?
<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
,但它什么也没打印。
答案 0 :(得分:1)
dataForm.get('description').getError('minlength').requiredLength
无耻的插件:我强烈建议您避免对表进行硬编码并重复所有这些检查,而应使用ngx-valdemort。