當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript AbstractControl.default方法代碼示例

本文整理匯總了TypeScript中@angular/forms.AbstractControl.default方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AbstractControl.default方法的具體用法?TypeScript AbstractControl.default怎麽用?TypeScript AbstractControl.default使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@angular/forms.AbstractControl的用法示例。


在下文中一共展示了AbstractControl.default方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('validates ratio to be only valid between 0 and 1', () => {
   isValid(form.get('ratio'));
   hasError(setValue('ratio', -0.1), 'min');
   isValid(setValue('ratio', 0));
   isValid(setValue('ratio', 1));
   hasError(setValue('ratio', 1.1), 'max');
 });
開發者ID:dillaman,項目名稱:ceph,代碼行數:7,代碼來源:pool-form.component.spec.ts

示例2: setValue

 const setPgNum = (pgs): AbstractControl => {
   setValue('poolType', 'erasure');
   const control = setValue('pgNum', pgs);
   fixture.detectChanges();
   fixture.debugElement.query(By.css('#pgNum')).nativeElement.dispatchEvent(new Event('blur'));
   return control;
 };
開發者ID:dillaman,項目名稱:ceph,代碼行數:7,代碼來源:pool-form.component.spec.ts

示例3: it

 it('validates pgNum in creation mode', () => {
   formHelper.expectError(form.get('pgNum'), 'required');
   formHelper.setValue('poolType', 'erasure');
   formHelper.expectValid(setPgNum(-28));
   expect(form.getValue('pgNum')).toBe(1);
   formHelper.expectValid(setPgNum(15));
   expect(form.getValue('pgNum')).toBe(16);
 });
開發者ID:IlsooByun,項目名稱:ceph,代碼行數:8,代碼來源:pool-form.component.spec.ts

示例4: beforeEach

 beforeEach(() => {
   setValue('crushRule', {
     min_size: 1,
     max_size: 20
   });
   component.ngOnInit();
   // triggers pgUpdate
   setPgNum(256);
 });
開發者ID:dillaman,項目名稱:ceph,代碼行數:9,代碼來源:pool-form.component.spec.ts

示例5: setPgNum

 const testPgUpdate = (pgs, jump, returnValue) => {
   if (pgs) {
     setPgNum(pgs);
   }
   if (jump) {
     setPgNum(form.getValue('pgNum') + jump);
   }
   expect(form.getValue('pgNum')).toBe(returnValue);
 };
開發者ID:ceph,項目名稱:ceph,代碼行數:9,代碼來源:pool-form.component.spec.ts


注:本文中的@angular/forms.AbstractControl.default方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。