当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Validators.min方法代码示例

本文整理汇总了TypeScript中@angular/forms.Validators.min方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Validators.min方法的具体用法?TypeScript Validators.min怎么用?TypeScript Validators.min使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/forms.Validators的用法示例。


在下文中一共展示了Validators.min方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: expect

 () => { expect(Validators.min(2)(new FormControl(''))).toBeNull(); });
开发者ID:diestrin,项目名称:angular,代码行数:1,代码来源:validators_spec.ts

示例2: constructor

  constructor (private i18n: I18n) {

    this.USER_USERNAME = {
      VALIDATORS: [
        Validators.required,
        Validators.minLength(3),
        Validators.maxLength(20),
        Validators.pattern(/^[a-z0-9._]+$/)
      ],
      MESSAGES: {
        'required': this.i18n('Username is required.'),
        'minlength': this.i18n('Username must be at least 3 characters long.'),
        'maxlength': this.i18n('Username cannot be more than 20 characters long.'),
        'pattern': this.i18n('Username should be only lowercase alphanumeric characters.')
      }
    }

    this.USER_EMAIL = {
      VALIDATORS: [ Validators.required, Validators.email ],
      MESSAGES: {
        'required': this.i18n('Email is required.'),
        'email': this.i18n('Email must be valid.')
      }
    }

    this.USER_PASSWORD = {
      VALIDATORS: [
        Validators.required,
        Validators.minLength(6),
        Validators.maxLength(255)
      ],
      MESSAGES: {
        'required': this.i18n('Password is required.'),
        'minlength': this.i18n('Password must be at least 6 characters long.'),
        'maxlength': this.i18n('Password cannot be more than 255 characters long.')
      }
    }

    this.USER_VIDEO_QUOTA = {
      VALIDATORS: [ Validators.required, Validators.min(-1) ],
      MESSAGES: {
        'required': this.i18n('Video quota is required.'),
        'min': this.i18n('Quota must be greater than -1.')
      }
    }

    this.USER_ROLE = {
      VALIDATORS: [ Validators.required ],
      MESSAGES: {
        'required': this.i18n('User role is required.')
      }
    }

    this.USER_DISPLAY_NAME = {
      VALIDATORS: [
        Validators.required,
        Validators.minLength(3),
        Validators.maxLength(120)
      ],
      MESSAGES: {
        'required': this.i18n('Display name is required.'),
        'minlength': this.i18n('Display name must be at least 3 characters long.'),
        'maxlength': this.i18n('Display name cannot be more than 120 characters long.')
      }
    }

    this.USER_DESCRIPTION = {
      VALIDATORS: [
        Validators.minLength(3),
        Validators.maxLength(250)
      ],
      MESSAGES: {
        'minlength': this.i18n('Description must be at least 3 characters long.'),
        'maxlength': this.i18n('Description cannot be more than 250 characters long.')
      }
    }
  }
开发者ID:jiang263,项目名称:PeerTube,代码行数:77,代码来源:user-validators.service.ts

示例3:

    'pattern': 'Username should be only lowercase alphanumeric characters.'
  }
}
export const USER_EMAIL = {
  VALIDATORS: [ Validators.required, Validators.email ],
  MESSAGES: {
    'required': 'Email is required.',
    'email': 'Email must be valid.'
  }
}
export const USER_PASSWORD = {
  VALIDATORS: [ Validators.required, Validators.minLength(6) ],
  MESSAGES: {
    'required': 'Password is required.',
    'minlength': 'Password must be at least 6 characters long.'
  }
}
export const USER_VIDEO_QUOTA = {
  VALIDATORS: [ Validators.required, Validators.min(-1) ],
  MESSAGES: {
    'required': 'Video quota is required.',
    'min': 'Quota must be greater than -1.'
  }
}
export const USER_ROLE = {
  VALIDATORS: [ Validators.required ],
  MESSAGES: {
    'required': 'User role is required.'
  }
}
开发者ID:quoidautre,项目名称:PeerTube,代码行数:30,代码来源:user.ts

示例4: ngOnInit

 ngOnInit() {
     this.form = this.fb.group({
         pay_account: [null, Validators.compose([Validators.required, Validators.email])],
         receiver_type: [null, [Validators.required]],
         receiver_account: [null, [Validators.required]],
         receiver_name: [null, Validators.compose([Validators.required, Validators.minLength(2)])],
         amount: [null, Validators.compose([Validators.required, Validators.pattern(`[0-9]+`), Validators.min(1), Validators.max(10000 * 100)])]
     });
     this.form.patchValue(this.item);
 }
开发者ID:duxie,项目名称:ng-alain,代码行数:10,代码来源:step1.component.ts


注:本文中的@angular/forms.Validators.min方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。