typescript 反应性forms1.component.ts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 反应性forms1.component.ts相关的知识,希望对你有一定的参考价值。
@Component({
selector: "app-login",
template: `
<form [formGroup]="loginForm" (submit)="submit()">
<input type="email" formControlName="email">
<input type="submit" value="submit">
</form>
`
})
export class LoginComponent implements OnInit {
loginForm: FormGroup;
ngOnInit() {
this.loginForm = new FormGroup({
email: new FormControl()
});
}
submit() {
console.log(this.loginForm.value);
}
}
以上是关于typescript 反应性forms1.component.ts的主要内容,如果未能解决你的问题,请参考以下文章
使用 TypeScript 反应 FlatList
与 Typescript 反应 - 类型 缺少类型中的以下属性
在与 TypeScript 的反应中使用状态
使用 TypeScript 反应 Apollo useQuery 钩子
反应原生 Typescript Touchableopacity 道具错误
使用 TypeScript 反应道具类型 - 如何拥有函数类型?