角形式 FormControlDirective
在本文中,我们将了解 Angular 10 中的 FormControlDirective 是什么以及如何使用它。
FormControlDirective用于将独立的 FormControl 实例同步到表单控件元素
导出自:
- 反应式表单模块
选择器:
- [表单控件]
方法:
- 创建要使用的 Angular 应用程序
- 在 app.component.ts 中创建一个包含输入值的对象。
- 在 app.component.html 中使用 FormControlDirective 来获取值。
- 使用 ng serve 为 Angular 应用程序提供服务以查看输出。
例子:
app.component.ts
import { Component, Inject } from '@angular/core';
import { FormGroup, FormControl, FormArray } from '@angular/forms'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
geek: FormControl = new FormControl('');
}
app.component.html
Value: {{ geek.value }}
app.component.html
Value: {{ geek.value }}
输出:
参考: https://angular.io/api/forms/FormControlDirective