跳到主要內容

Angular : Dynamically Creating Form Fields Using Reactive Form


一般我們使用Angular處裡表單的問題,對於資料結構較為複雜的Model,我們都會採用Data Driven的方式,也就是使用Reactive Form,因為這樣對於資料結構複雜的Model來說是比較容易維護與掌控。

回到今天的主題,我們將介紹使用 Reactive Form動態產生表單欄位。因為我們平常工作可能多少會遇到需要動態產生表單欄位的需求。舉例來說,像是訂單的問題,它的資料結構可能像是這樣:
{OrderID:"A001",
Items:[
{ItemName:"橡皮擦",Price:15,Quantity:10},
{ItemName:"鉛筆",Price:10,Quantity:10},
{ItemName:"筆記本",Price:25,Quantity:25}
]}

如果我們新增一筆Item,就需要動態的產生Item的DOM。其實在Angular要完成動態產生表單欄位這樣的需求,不管資料結構有多複雜,大致只需要用到 FormGroup、 FormArray、FormControl、ngFor、 track by 就能搞定了 !!

這裡我們將用訂單的例子,來示範使用 Reactive Form來動態產生表單欄位
1. 首先,我們使用FormGroup、 FormArray與FormControl將表單建立起來。
2. 為了能夠動態產生Items,對於欄位Items我們使用FormArray。
3. 建立AddItem、CreateItem,用於新增欄位。
4. 使用ngFor來產生出Items的DOM。
5. 利用trackBy ,減少DOM 更新次數,提升效能。

import { Component, OnInit } from '@angular/core';
import { FormGroup, FormControl, FormArray } from '@angular/forms';
@Component({
  selector: 'app-reactive-form-sample',
  templateUrl: './reactive-form-sample.component.html',
  styleUrls: ['./reactive-form-sample.component.css']
})
export class ReactiveFormSampleComponent implements OnInit {
  Form: FormGroup;
  FormContent: string;
  Items: any;
  constructor() { }
  ngOnInit() {
    this.InitForm();
  }
  InitForm(): void {
    this.Form = new FormGroup({
      OrderID: new FormControl(null),
      Items: new FormArray([this.CreateItem()]),
    });
  }
  AddItem(): void {
    this.Items = this.Form.controls['Items'];
    this.Items.push(this.CreateItem());
    console.log(this.Items);
  }
  CreateItem(): FormGroup {
    return new FormGroup({
      ItemName: new FormControl(null),
      Price: new FormControl(null),
      Quantity: new FormControl(null)
    });
  }
  OnSubmit() {
    this.FormContent = JSON.stringify(this.Form.value);
  }
  TrackByFn(index, item): number {
    console.log(index, item);
    return index;
  }
}


<div class="container-fluid">
  <div class="row justify-content-center">
    <div class="w-50">
      <form [formGroup]="this.Form" class="form-horizontal" (ngSubmit)="OnSubmit()" role="form">
          <div class="form-row">
              <div class="form-group col-sm-12">
                <h5 style="display:inline">
                  <span class="badge badge-info col-sm-12 text-left">Order ID
                    <span style="color:crimson">*</span>
                  </span>
                </h5>
                <input formControlName="OrderID" class="form-control" type="text" />
              </div>
            </div>
        <div formArrayName="Items" *ngFor="let item of this.Form.controls['Items'].value;trackBy: TrackByFn; let i = index;">
          <div class="card" [formGroupName]="i">
            <div class="card-header">
                {{'Item['+i+']'}}
            </div>
            <div class="card-body">
              <div class="form-row">
                <div class="form-group col-sm-12">
                  <h5 style="display:inline">
                    <span class="badge badge-info col-sm-12 text-left">Item Name

                      <span style="color:crimson">*</span>
                    </span>
                  </h5>
                  <input formControlName="ItemName" class="form-control" type="text" />
                </div>
              </div>
              <div class="form-row">
                <div class="form-group col-sm-12">
                  <h5 style="display:inline">
                    <span class="badge badge-info col-sm-12 text-left">Price
                      <span style="color:crimson">*</span>
                    </span>
                  </h5>
                  <input formControlName="Price" class="form-control" type="number" />
                </div>
              </div>
              <div class="form-row">
                <div class="form-group col-sm-12">
                  <h5 style="display:inline">
                    <span class="badge badge-info col-sm-12 text-left">Quantity
                      <span style="color:crimson">*</span>
                    </span>
                  </h5>
                  <input formControlName="Quantity" class="form-control" type="number" />
                </div>
              </div>
            </div>
          </div>
        </div>
        <button type="button" class="btn btn-info col-sm-6" (click)="this.AddItem()">Add</button>
        <button type="submit" class="btn btn-primary col-sm-6">Submit</button>
      </form>
    </div>
  </div>
  <br/>
  <div *ngIf="this.FormContent!=null" class="row justify-content-center">
    <div class="alert alert-warning" role="alert">
      {{this.FormContent}}
    </div>
  </div>
</div>

完成後的範例如下:

留言

這個網誌中的熱門文章

reCAPTCHA v3 的簡單教學

Google於10/29正式發布reCAPTCHA v3 API,該版本中最大的亮點就是透過分析使用者瀏覽網站的行為,以辨識使用者是否為機器人。換句話說,使用者再也不用一直回答問題和不停地點選圖片,所以說以後再也不用聽到客戶抱怨老是點錯圖片,果然科技始於人性啊~ 另外reCAPTCHA v3 的使用方式也非常簡單,只要短短幾個步驟,就能輕鬆地將reCAPTCHA v3運用在專案中。 1. 首先,至  https://www.google.com/recaptcha/admin  替你的網站註冊一個reCAPTCHA。 2. 註冊後,將會得到Site Key和Secret Key,其中Site Key是給前端使用,而Secret Key則是給後端使用。 3. 在前端HTML head的部分加入reCAPTCHA的api.js。 <script src='https://www.google.com/recaptcha/api.js?render=6Lc5vHgUAAAAAKHxlH0FdDJdA2-8yfzpoMDLIWPc'></script> 4. 接著在body的部分呼叫reCAPTCHA API向Google取得token後,再將token送至後端進行驗證,範例如下: <script> grecaptcha.ready(function () { console.log('1. grecaptcha.ready'); console.log('2. grecaptcha.execute("6Lc5vHgUAAAAAKHxlH0FdDJdA2-8yfzpoMDLIWPc", { action: "@Url.Action("VerifyBot", "Account")" })'); grecaptcha.execute('6Lc5vHgUAAAAAKHxlH0FdDJdA2-8yfzpoMDLIWPc', { action: '@

MongoDB: Save Files Using GridFS

過去我們在使用File System,我們必須自己處理備份、複製、擴充的問題;如今我們可以我們可以使用MongoDB作為File DB,它可以利用Replica和Sharing的機制幫助我們解決備份、複製、動態擴充、分散式儲存、自動平衡、故障回復的問題,且效能優於RDBMS。若真要說MongoDB這類NoSql的缺點就是它不能處理Transaction。 在MongoDB中對大於16MB BSON Document(如:圖片、音頻、影片等)是使用GridFS的方式做儲存。 GridFS是一種在MongoDB中存儲大二進製文件的機制,GridFS 會將文件分割成多個Chunk(預設256 KB),而GridFS使用fs.files和fs.chunks等兩個Collection來存儲檔案資料,其中fs.files負責存放文件的名稱、大小、上傳的時間等資訊,而fs.chunks則是負責存放經過分割後的Chunks,其優點是透過分割儲存的方式能夠快速讀取檔案中任何的片段。 fs.files Collection { "_id" : , // 檔案的Unique ID "filename": data_string, //檔案名稱 "length" : data_number, // 檔案大小 "chunkSize" : data_number, // chunk大小,預設256k "uploadDate" : data_date, // 儲存時間 "md5" : data_string //檔案的md5值 } fs.chunks Collection { "_id" : , // 檔案chunk的Unique ID "files_id" : , //對應檔案的Unique ID "n" : chunk_number, // 檔案chunk的數量 "data" : data_binary, // 以二進為儲存檔案 } 在下面例子,我們將簡單地示範使用.NET MongoDB Driver來存取與操作MongoDB的G

Upload large files to web api using resumable.js

最近工作剛好遇到大檔案(> 2GB)上傳的需求,大檔案的上傳方式與平常處裡小檔案上傳當方式有些不同,對於大檔案上傳我們需要額外考量三個問題 : 1. 上傳逾時。 2  IIS 不支援超過2BG 的檔案上傳 3. 檔案在上傳過程中中斷。 上述這三個問題可以透過multipart/form-data和chuck 的方式,將檔案分割成無數個chunk,且給予每個chunk編號,如果傳送失敗就重新傳送chunk ,進而實現斷點續傳的功能。 目前市面三個有支援大檔案與斷點續傳的JavaScript Library分別有 Resumable.js 、 Dropzone.js 、jQuery Ajax File Upload,且它們底層皆是使用HTML5 File API,此外它們的作者都有提供Server Side Implementation Sample,而且連TypeScript的定義檔都有,真的都是佛心來著。 接著我們開始介紹如何使用Resumable.js 上傳檔案至Web API(.NET) : Server Side (Web API)的主要流程: 1. 首先,在Web API需要使用MultipartFormDataStreamProvider來取得每一次Resumable.js 所傳過來的chunk,而chunk由FormData和FileData組成,其中FormData記載Resumable.js所定義的chuck欄位,而FileData則存放chunk的檔案內容。 2. 接著從FormData得到這些Resumable.js所定義的chuck欄位resumableFilename、resumableIdentifier、resumableTotalChunks、resumableChunkNumber欄位,並且根據這些欄位我們將chunk儲存在Upload 目錄下。 3. 等待所有chunk都到位,將合併這些chunk並組成完整的檔案。 FileStorageController Class [RoutePrefix("api/FileStorage")] public class FileStorageController : ApiController {