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


TypeScript FormArray.push方法代碼示例

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


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

示例1: it

      it('should support inserting', () => {
        a.push(c1);
        a.push(c3);

        a.insert(1, c2);

        expect(a.controls).toEqual([c1, c2, c3]);
      });
開發者ID:manekinekko,項目名稱:angular,代碼行數:8,代碼來源:form_array_spec.ts

示例2: it

      it('should support clearing', () => {
        a.push(c1);
        a.push(c2);
        a.push(c3);

        a.clear();

        expect(a.controls).toEqual([]);

        a.clear();

        expect(a.controls).toEqual([]);
      });
開發者ID:Cammisuli,項目名稱:angular,代碼行數:13,代碼來源:form_array_spec.ts

示例3: adaptFormArraySize

export function adaptFormArraySize(formArray: FormArray, size: number, elementProducer: (index: number) => AbstractControl) {

    while (formArray.length !== size) {
        if (formArray.length > size) {
            formArray.removeAt(0);
        } else if (formArray.length < size) {
            formArray.push(elementProducer(formArray.length));
        }
    }
}
開發者ID:hmenager,項目名稱:composer,代碼行數:10,代碼來源:form-array-helpers.ts

示例4: addPayOff

  addPayOff(event) {
    event.preventDefault(); // ensure this button doesn't try to submit the form
    const emptyPayOff = {amount: null, date: null, final: false};

    // add pay off to both the model and to form controls because
    // I don't think Angular has any way to do this automagically yet
    this.myModel.payOffs.push(emptyPayOff);
    this.payOffsFormArray.push(this.createPayOffFormGroup(emptyPayOff));
    console.log('Added New Pay Off', this.payOffsFormArray);
  }
開發者ID:screenm0nkey,項目名稱:angular2-examples-webpack,代碼行數:10,代碼來源:form-9.ts

示例5: inject

         inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
           a.removeAt(1);

           a.valueChanges.subscribe({
             next: (value: any) => {
               expect(value).toEqual(['old1', 'old2']);
               async.done();
             }
           });

           a.push(c2);
         }));
開發者ID:manekinekko,項目名稱:angular,代碼行數:12,代碼來源:form_array_spec.ts

示例6: hinzufuegen

    hinzufuegen() {
        const waehrungsbetrag = new FormGroup({
            betrag: new FormControl('', Validators.required),
            waehrung: new FormControl('EUR', Validators.required)
        });

        const group = new FormGroup({
            kategorie: new FormControl('', Validators.required),
            position: new FormControl('', Validators.required),
            waehrungsbetrag: waehrungsbetrag,
        });

        this.positionen.push(group);
    }
開發者ID:haschi,項目名稱:dominium,代碼行數:14,代碼來源:gruppe.component.ts


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