gpt4 book ai didi

forms - 使用formBuilder angular2获取 View 中的字段值

转载 作者:太空狗 更新时间:2023-10-29 18:25:53 26 4
gpt4 key购买 nike

我有这个字段:

<form (ngSubmit)="postComment()" [formGroup]="commentForm">

<textarea formControlName="comment"></textarea>

...

我想在 div 中显示值:

<div>{{commentForm.controls.comment.???}}</div>

最佳答案

要获取控件的值,首先我们必须使用 get 方法获取控件,然后必须获取 value 属性,如下所示:

<div>{{ commentForm.get('comment').value }}</div>

关于forms - 使用formBuilder angular2获取 View 中的字段值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41757525/

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