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

 

<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"用来验证的控件,所以报错!

 

posted @ 2020-10-31 13:00  三瑞  阅读(1026)  评论(0编辑  收藏  举报