bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

html的Form表單使用方法-創新互聯

表單的創建
1、Reactive forms
響應式表單,使用顯式和不可變的方法來管理表單在給定時間點的狀態,對表單狀態的每個更改都返回一個新狀態,該狀態在更改之間維護模型的完整性。
幾個關鍵詞:FormControl/[formControl]; FormGroup/[formGroup]; [formControlName]; FormBuilder;

我們提供的服務有:成都網站制作、網站建設、微信公眾號開發、網站優化、網站認證、船山ssl等。為1000+企事業單位解決了網站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的船山網站制作公司

響應式的表單最主要的是form control

name = new FormControl('');
//常用的參數有formState表示值,validators:[]表示驗證new FormControl('abc',[Validators.required])
<label>
  Name:
  <input type="text" [formControl]="name">
</label>
<p>
  Value: {{ name.value }}
</p>
updateName() {
  this.name.setValue('Nancy');
}
getName(){
   return this.name.value; //value 是 readonly
}

當多個form control組合在一起的時候使用FormGroup

profileForm = new FormGroup({
   firstName: new FormControl('',[Validators.required]),
   lastName: new FormControl(''),
     address:new FormGroup({
       street: new FormControl('')
     })
});
//另外一種方式
constructor(private fb: FormBuilder) { }
profileForm = this.fb.group({
   firstName: ['', Validators.required],
  lastName: [''],
});

<form [formGroup]="profileForm">

  <label>
   First Name:
   <input type="text" formControlName="firstName">
  </label>

  <label>
   Last Name:
   <input type="text" formControlName="lastName">
  </label>

   <div formGroupName="address">
     <h4>Address</h4>

     <label>
       Street:
       <input type="text" formControlName="street">
     </label>
   </div>
</form>

//獲取form control
this.profileForm.get('firstName');
//批量更新
this.profileForm.setValue(valueObj);//must all key exist
this.profileForm.patchValue({
   firstName: 'Nancy',
   address: {
    street: '123 Drew Street'
   }
});

2、Template-driven forms
傳統方式創建form,幾個關鍵詞:ngModel; ngForm
這種方式創建表單主要是通過model來實現雙向綁定,通過ngForm來將普通的form轉成angular form

<form #heroForm = "ngForm">
   <div class="form-group">
    <label>Name</label>
    <input type="text" class="form-control" name="name" [(ngModel)]="model.name" #name="ngModel">
   </div>
  </form>

在這個例子中,heroForm有一個屬性form,heroForm.form其實就和FormGroup創建的form一樣了,
設置了#name="ngModel",就可以用heroForm.controls.name來獲取name了

表單的驗證
整個表單的驗證
Reactive form通過profileForm.invalid
Template-driven form通過heroForm.form.invalid

單個字段的驗證
Reactive form直接獲取即可

<form [formGroup] = "profileForm">
   <input type="text" formControlName="lastName">
   <div *ngIf="lastName.invalid && (lastName.dirty || lastName.touched)"
       class="alert alert-danger">
     <div *ngIf="lastName.errors.maxlength">
       Name must be at most 10 characters long.
     </div>
   </div>
</form>

如果formControlName是一個變量,用下面這種方式

<form [formGroup] = "profileForm">
   <input type="text" [formControlName]="xxx">
   <div *ngIf="profileForm.get('xxx').invalid && (profileForm.get('xxx').dirty || profileForm.get('xxx').touched)"
       class="alert alert-danger">
     <div *ngIf="profileForm.get('xxx').errors.maxlength">
       Name must be at most 10 characters long.
     </div>
   </div>
</form>

Template-driven通過變量判斷

<input type="text" class="form-control" name="name" [(ngModel)]="model.name" required minlength="4" appForbiddenName="11111" #name="ngModel">
<p *ngIf="name.invalid" class="alert alert-danger">
   <span *ngIf="name.errors.required">Name is required</span>
   <span *ngIf="name.errors.minlength">Min 4 chars</span>
   <span *ngIf="name.errors.forbiddenName">This is forbidden name</span>
</p>

一定要有#name="ngModel"這句,這句是定義一個名稱為name的form control

表單的提交
1、通過form的(ngSubmit)="onSubmit()",怎么觸發form的提交,和傳統form是一樣的
2、通過按鈕的click事件

Reactive form
<button click="onSubmit()" class="btn btn-success" [disabled]="profileForm.invalid">Submit</button>
Template-driven form
<button click="onSubmit()" class="btn btn-success" [disabled]="heroForm.form.invalid">Submit</button>

另外有需要云服務器可以了解下創新互聯cdcxhl.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

分享標題:html的Form表單使用方法-創新互聯
文章分享:http://vcdvsql.cn/article6/didhig.html

成都網站建設公司_創新互聯,為您提供網站導航App開發小程序開發Google移動網站建設網站維護

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都定制網站網頁設計