91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在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

伊吾县| 竹北市| 探索| 岫岩| 灌云县| 宁武县| 玉龙| 仁寿县| 十堰市| 鸡西市| 新乐市| 重庆市| 商南县| 肇源县| 晴隆县| 沁水县| 沐川县| 聂荣县| 太谷县| 临清市| 桃园市| 恭城| 深州市| 闵行区| 平邑县| 博爱县| 岗巴县| 岐山县| 柳江县| 新泰市| 麻城市| 新邵县| 永丰县| 甘南县| 永靖县| 灵山县| 友谊县| 镇康县| 平顶山市| 富阳市| 苗栗县|