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


TypeScript FormControl.hasError方法代码示例

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


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

示例1: it

 it('should work for control with error', () => {
     let control: FormControl = new FormControl('');
     control.setErrors({ oldError: 'test', newError: 'test' });
     let validated = AbstractControlUtil.removeError(control, 'newError');
     expect(control.hasError('newError')).toBeFalsy();
     expect(control.hasError('oldError')).toBeTruthy();
 });
开发者ID:Nightapes,项目名称:ng2-validators,代码行数:7,代码来源:abstract-control-util.spec.ts

示例2: it

 it('should unset error when values are equal', () => {
   y.setErrors({ match: true });
   CdValidators.match('x', 'y')(form);
   expect(x.hasError('match')).toBeFalsy();
   expect(y.hasError('match')).toBeFalsy();
   expect(y.valid).toBeTruthy();
 });
开发者ID:yanghonggang,项目名称:ceph,代码行数:7,代码来源:cd-validators.spec.ts

示例3: it

 it('should not show error when both values are empty', () => {
   let password: FormControl = new FormControl('');
   let confirmPassword: FormControl = new FormControl('');
   let form = new FormGroup({
       'newPassword': password,
       'confirmPassword': confirmPassword
     }, EqualToValidator.equalTo('newPassword', 'confirmPassword')
   );
   form.updateValueAndValidity();
   expect(confirmPassword.getError('notEqualTo')).toBeNull();
   expect(confirmPassword.hasError('notEqualTo')).toBe(false);
 });
开发者ID:Nightapes,项目名称:ng2-validators,代码行数:12,代码来源:equal-to-validator.spec.ts

示例4: return

    return (control: FormControl): {[key: string]: boolean} => {
      if(control.hasError('required')) {
       return null;
      }

      let val: number = control.value;

      if(isNaN(val) || val==undefined || /\D/.test(val.toString())) {

        return {"number": true};
      } else if(!isNaN(prms.min) && !isNaN(prms.max)) {

        return val < prms.min || val > prms.max ? {"number": true} : null;
      } else if(!isNaN(prms.min)) {

        return val < prms.min ? {"number": true} : null;
      } else if(!isNaN(prms.max)) {

        return val > prms.max ? {"number": true} : null;
      } else {

        return null;
      }
    };
开发者ID:alalar,项目名称:AngularBookingApartments,代码行数:24,代码来源:number.validator.ts

示例5: temErro

 temErro(): boolean {
   return this.control.hasError(this.error) && this.control.dirty;
 }
开发者ID:CFSystems,项目名称:ccpeasyform-ui,代码行数:3,代码来源:message.component.ts


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