當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。