首页 > 解决方案 > 当验证器设置为 minLength 时,空字段控制有效

问题描述

我创建了一个带有 controlforms 的表单。

idAnnuaire: new FormControl('',[Validators.minLength(6),Validators.maxLength(6)]),

问题是当字段为空时{{form.controls.idAnnuaire.valid }} 设置为true. (期待假)

我不会将 controlform 设置为 required 因为用户可以发送表单如果他填写其他输入而不是idAnnuaire

Stackblitz 演示

标签: angulartypescriptangular-reactive-formsangular-forms

解决方案


有几个解决方案 - 但是,我认为这种特定场景的最佳选择是创建自定义验证器。它可能看起来像这样:

// Custom Validator file

// Uncomment this for the actual app - commented out for the snippet
// import { FormControl } from '@angular/forms';

// This should be removed - the acutal value should come from the form
const inputValidValue = { value: '123123' };
const inputInvalidValueLow = { value: '123' };
const inputInvalidValueHigh = { value: '123123123123' };
const inputInvalidValueNoValue = { value: '' };

// this needs to be an exported function - snippet wont run if 'export' is there 
function validateOptionalFieldWithLength(input){
  return validateField(input, { validField: true });
}

// Uncomment this for the actual app - commented out for the snippet
// function validateField(input: FormControl, error: { [errorKey: string]: boolean }) {
function validateField(input, error) {
  let isValidField = true;
  let fieldValue = input.value;

if (fieldValue && fieldValue.length === 6 ) {
    return null;
  }
  return error;
}


console.log('should be valid (null) : ' + validateOptionalFieldWithLength(inputValidValue));
console.log('should be invalid (error) : ' + validateOptionalFieldWithLength(inputInvalidValueLow));
console.log('should be invalid (error) : ' + validateOptionalFieldWithLength(inputInvalidValueHigh));
console.log('should be invalid (error) : ' + validateOptionalFieldWithLength(inputInvalidValueNoValue));

// You component

// Import your custom validator


idAnnuaire: new FormControl('', 
              Validators.compose([
                validateOptionalFieldWithLength
              ])
            )


推荐阅读