<form nz-form [formGroup]="validateForm" class="login-form" (ngSubmit)="submitForm()">
<nz-form-item>
      <nz-form-control nzErrorTip="请输入验证码" class="login-imagecode">
        <nz-input-group nzPrefixIcon="user">
          <input type="text" nz-input formControlName="imageCode" placeholder="验证码" />
        </nz-input-group>
      </nz-form-control>
    </nz-form-item>
</form>

 

ERROR Error: Cannot find control with name: 'imageCode'

"formControlName="imageCode"用来验证的控件,所以报错!

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2021-10-14
  • 2021-06-04
  • 2021-11-05
  • 2021-11-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案