首页 > 其他 > 详细

angular11 报错 ERROR Error: If ngModel is used within a form tag, either the name attribute must be set or the form

时间:2021-05-06 09:45:34      阅读:15      评论:0      收藏:0      [点我收藏+]

angular 报错 ERROR Error: If ngModel is used within a form tag, either the name attribute must be set or the form control must be defined as ‘standalone‘ in ngModelOptions. Example 1: <input [(ngModel)]="person.firstName" name="first"> Example 2: <input [(ngModel)]="person.firstName" [ngModelOptions]="{standalone: true}">

创建
表单的时候,系统默认会创建一个”FormGroup"的对象。用带有“ngModel"的”“标签时

遇到这个问题 通常是因为 input 标签没有 name 添加上name=”xxxName”就可以哦了~~

例如:ZORRO中的nz-select

<form nz-form nzLayout="vertical" #f="ngForm" se-container>

  <se label="AAA">
    <nz-select [(ngModel)]="form.AAA" nzMode="multiple">
      <nz-option [nzValue]="data" [nzLabel]="data" *ngFor="let data of AAADatas"></nz-option>
    </nz-select>
  </se>
  
</form>

改为

<form nz-form nzLayout="vertical" #f="ngForm" se-container>

  <se label="aaa">
    <nz-select [(ngModel)]="form.aaa" nzMode="multiple" name="aaa">
      <nz-option [nzValue]="data" [nzLabel]="data" *ngFor="let data of aaaDatas"></nz-option>
    </nz-select>
  </se>
  
</form>

angular11 报错 ERROR Error: If ngModel is used within a form tag, either the name attribute must be set or the form

原文:https://www.cnblogs.com/sugartang/p/14727766.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!