📜  如何在 Angular 10 中检查表单或控件是否被触摸?

📅  最后修改于: 2022-05-13 01:56:48.120000             🧑  作者: Mango

如何在 Angular 10 中检查表单或控件是否被触摸?

在本文中,我们将在 Angular 10 中检查表单是否被触摸。touched 属性用于报告控件或表单是否被触摸。

句法:

form.touched

返回值:

  • boolean:检查表单是否被触摸的布尔值

NgModule:被touched属性使用的模块是:

  • 表单模块

方法:

  • 创建要使用的 Angular 应用程序。
  • 在 app.component.html 中使用 ngForm 指令创建一个表单。
  • 在 app.component.ts 中,使用 touched 属性获取信息。
  • 使用 ng serve 为 Angular 应用程序提供服务以查看输出。

例子:

app.component.ts
import { Component } from '@angular/core';
import { FormGroup, FormControl, FormArray, 
        Validators } from '@angular/forms'
  
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html'
})
  
export class AppComponent {
  form = new FormGroup({
    name: new FormControl(
    ),
    rollno: new FormControl() 
  });
  
  get name(): any {
    return this.form.get('name');
  }
  
  onSubmit(): void {
    console.log("Form is touched : ",this.form.touched);
  }
}


app.component.html
     
          



app.component.html

     
          

输出:

参考: https://angular.io/api/forms/AbstractControlDirective#touched