reactive-forms

    1熱度

    1回答

    夥計們我需要一些關於Angular 4反應形式的幫助。除了驗證外,嵌套的表單組也可以正常工作。但是當我嘗試在我的html標記中添加一些處理驗證時,我的應用崩潰了。 我的組件的代碼如下所示: createForm() { let options: any = {}; for (let option of this.annoucementOptions) { opti

    0熱度

    1回答

    如何在同級組件之間傳遞數據?比方說,我有一個不大不小的數據錄入格,看起來像這樣的: <tr *ngFor="let item of frm.controls.items.controls; let i=index" [formGroupName]="i"> <td><input type="text" formControlName="id" /></td> <td><inpu

    11熱度

    1回答

    具有角(4.x的)我用ReactiveForms,我已經訂閱valueChanges我FormControl( 「輸入」),像這樣: export class App { version:string; formControl = new FormControl('default', []); form = this.fb.group({ input: t

    2熱度

    1回答

    使用Angular4 ReactiveForm(我使用的版本)創建表單。 我在哪裏有表格,其中有代碼,年份和類別列表。 主要形式: 代碼 年 分類[] 代碼 說明 訂購 產品[] 代碼 說明 價格 但我想表現在以下方式的形式,在類別列表和產品在每個類別將是所有行,並將全部顯示在同一個表中(示例): <input code> <input year> <table> <tr>Category

    0熱度

    1回答

    我的反應表單有問題。我需要一個與添加的文本輸入相結合的單選按鈕組。在這裏,current preview of my input set 繼我的模板當前代碼: <div class="form-group row" formArrayName="externCallerIds"> <div class="col-sm-5"> <label for="extern-c

    1熱度

    1回答

    我想在我的Angular2應用程序中使用無功的形式,但我遇到了一個異常,如下 EXCEPTION: Uncaught (in promise): TypeError: Cannot read property 'touched' of null TypeError: Cannot read property 'touched' of null 我的樣品的「感動」代碼是如下 import { Com

    0熱度

    1回答

    我正在嘗試使用Angular的反應形式,並且我很難弄清楚如何延遲由服務填充的下拉列表的默認值綁定。下面是我的組件的代碼片段: export class TransferComponent { id: number; accounts: Account[] = []; myForm: FormGroup; transfer: Transfer; constructor( priv

    1熱度

    1回答

    組件形式我這樣做: public loginForm: FormGroup = this.fb.group({ email: ['', Validators.required], password: ['', Validators.required] }); 然後在模板結合的形式: <StackLayout orientation="vertical" [formGrou

    0熱度

    1回答

    我有一個按鈕,如下所示。 <button type="button" class="button-next btn btn-primary" nextStep>Next <i class="icon-arrow-right14 position-right"></i> </button> 它在一個嵌套的表格組中,其編號爲formGroupName="company"。如果公司無效,

    0熱度

    1回答

    我正在使用反應形式,並且在理解數據如何映射到窗體控件時遇到了一些麻煩。我們來看一個具有id和名字的對象控件的例子。此控件應呈現爲輸入文本框,並且用戶鍵入Id。我然後使用自動填充功能以遠程查找的對象,並使用看起來像這樣 { id: 1234, description: "Some description" } 由於,這是一個對象,而不是一個字符串數據填充底層對象 - 在輸入框中顯示[對象的對象如