Angular 表单 NgModel 指令
在本文中,我们将了解 Angular 10 中的 NgModel 是什么以及如何使用它。 NgModel用于创建顶级表单组实例,并将表单绑定到给定的表单值。
句法:
NgModule:NgModel使用的模块是:
- 表单模块
选择器:
- [ng模型]
方法:
- 创建要使用的 Angular 应用程序
- 在 app.component.ts 中创建一个变量,为输入字段赋值。
- 在 app.component.html 中创建一个表单并使用 ngModel 来获取输入的值。
- 使用 ng serve 为 Angular 应用程序提供服务以查看输出。
示例 1:
app.component.ts
import { Component, Inject } from '@angular/core';
import { PLATFORM_ID } from '@angular/core';
import { isPlatformWorkerApp } from '@angular/common';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
gfg: string = '';
setValue() {
this.gfg = 'GeeksforGeeks';
}
}
app.component.html
GeeksforGeeks
Value: {{ gfg }}
app.component.html
GeeksforGeeks
Value: {{ gfg }}
输出:
参考: https://angular.io/api/forms/NgModel