我正在初始化表单中的隐藏字段
<input type="text" name="test" value="{{interest.id}}" formControlName="test" />
在提交表单时,我收到字段值的空值,该值应为整数值。
答案 0 :(得分:0)
尝试以下
<input type="hidden" name="test" ng-model="interest.id" value="{{interest.id}}"
formControlName="test" />
答案 1 :(得分:0)
试试这个:
<input type="text" name="test" [value]="interest.id" formControlName="test" />
希望它有所帮助:)