gpt4 book ai didi

angular - 如何在 Typescript 中使用 ngModel 从 HTML 集中获取值

转载 作者:行者123 更新时间:2023-12-05 04:00:34 24 4
gpt4 key购买 nike

我知道这可能是一个重复的问题。我有一个输入框,我在其中使用 ngModel 设置值。现在我想获取该值并使用 typescript 存储它。有人可以帮我怎么做吗?HTML 代码:

 <mat-label> City:
<input class="editcustomer" [(ngModel)]="element.city" />
</mat-label>

我是使用 getElementbyId 还是有其他方法?

最佳答案

你可以这样试试

HTML

<input type="text" [ngModel]="element.city" (ngModelChange)="myFunction($event)">

TS

myFunction(event: any): any {
console.log(event); // here you are getting the value
}

但我建议你实现模板驱动形式或 react 形式在这里你可以找到更多相关信息 Reactive Fromtemplate driven from

你正在使用响应式(Reactive)形式,所以这种方式更好

TS

  this.myForm = new FormGroup({
firstName: new FormControl(''),
lastName: new FormControl(''),
});

HTML

<form [formGroup]="myForm"  (ngSubmit)="onSubmit()">
<input type="text" formControlName="firstName">
<input type="text" formControlName="lastName">
</form>

TS

onSubmit() {
console.log(this.myForm); // here you will get all the values
}

关于angular - 如何在 Typescript 中使用 ngModel 从 HTML 集中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56106010/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com