在 Angular 中使用 "renderer/renderer2" 获取组件中 DOM 输入的值
Use "renderer/renderer2" in Angular to get value of DOM input in component
我最近开始学习Angular,我想从表单中获取值并将其发送到数据库[Firebase]。我正在使用 angularfire2。
根据文档,有 "setValue()" 方法但没有 "value()" 或 "getValue()" 方法。还有其他方法可以使用吗?
-TIA
angular 中的表单组 API 中有一个名为 value
的获取 属性。
您可以使用this.yourFormGroupName.value
获取表单组的值。
如果要获取禁用控件的值,可以使用getRawValue()
方法。 this.yourFormGroupName.getRawValue()
.
你的问题和标题描述不一样
I want to take the value from a form
this.form.value
我最近开始学习Angular,我想从表单中获取值并将其发送到数据库[Firebase]。我正在使用 angularfire2。
根据文档,有 "setValue()" 方法但没有 "value()" 或 "getValue()" 方法。还有其他方法可以使用吗?
-TIA
angular 中的表单组 API 中有一个名为 value
的获取 属性。
您可以使用this.yourFormGroupName.value
获取表单组的值。
如果要获取禁用控件的值,可以使用getRawValue()
方法。 this.yourFormGroupName.getRawValue()
.
你的问题和标题描述不一样
I want to take the value from a form
this.form.value