亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Angular中使用FormArray來動態添加或刪除表單控件

發布時間:2024-06-18 10:29:48 來源:億速云 閱讀:100 作者:小樊 欄目:web開發

在Angular中,可以使用FormArray來動態添加或刪除表單控件。以下是一個簡單的示例,展示如何使用FormArray來實現動態添加或刪除表單控件:

首先,創建一個包含FormArray的FormGroup,并在組件中初始化:

import { Component } from '@angular/core';
import { FormGroup, FormControl, FormArray } from '@angular/forms';

@Component({
  selector: 'app-form',
  templateUrl: './form.component.html',
  styleUrls: ['./form.component.css']
})
export class FormComponent {
  form: FormGroup;

  constructor() {
    this.form = new FormGroup({
      items: new FormArray([])
    });
  }

  get items() {
    return (this.form.get('items') as FormArray);
  }

  addItem() {
    this.items.push(new FormControl(''));
  }

  removeItem(index: number) {
    this.items.removeAt(index);
  }
}

然后,在模板中使用FormArray來動態添加或刪除表單控件:

<form [formGroup]="form">
  <div formArrayName="items">
    <div *ngFor="let item of items.controls; let i = index;">
      <input [formControlName]="i">
      <button (click)="removeItem(i)">Remove Item</button>
    </div>
  </div>
  <button (click)="addItem()">Add Item</button>
</form>

在上面的示例中,當用戶點擊“Add Item”按鈕時,會調用addItem()方法向FormArray中添加一個新的FormControl。當用戶點擊“Remove Item”按鈕時,會調用removeItem()方法從FormArray中刪除對應的FormControl。

通過這種方式,您可以輕松實現在Angular中使用FormArray來動態添加或刪除表單控件。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南涧| 项城市| 正宁县| 鄯善县| 湖南省| 平利县| 青海省| 大城县| 酉阳| 弥勒县| 潢川县| 延吉市| 潍坊市| 通许县| 五原县| 玛曲县| 井冈山市| 雅安市| 平江县| 河北区| 商水县| 旬邑县| 密云县| 罗源县| 高密市| 南郑县| 留坝县| 邮箱| 玉田县| 长子县| 怀仁县| 太仓市| 苏尼特右旗| 临洮县| 远安县| 淅川县| 卢湾区| 敖汉旗| 阜康市| 青州市| 外汇|