标签: angular forms reactive
我有一个反应式表单字段,该字段的值基于其他输入。
<input type="text" class="form-control" [value]="isStrongEnough" formControlName="secret"/>
如何获取此值(实时)?当我尝试以下操作时,即使该字段的值显示为(即,是/否),它也会变空
{{ form.get('secret').value }}