首页 > 解决方案 > 如何以反应形式绑定,即 angular 中的 formcontrolname 和 ngmodel

问题描述

这是代码:

list.component.html

<form nz-form [formGroup]="taskFormGroup" (submit)="saveFormData()">
        <div nz-row *ngFor="let remark of checklis>
          <div nz-col nzXXl="12" *ngFor="let task of remark.tasks" style="padding: .5rem;">
<nz-form-item>
                  <nz-form-control>
                    <nz-radio-group formControlName="status" name="status" (change)="onChangeStatus($event)">
                      <label nz-radio nzValue="true">Passed</label>
                      <label nz-radio nzValue="false">Failed</label>
                    </nz-radio-group>
                  </nz-form-control>
                </nz-form-item>
</div>
</div>
</form>

list.component.ts

checklist = [
    {
      "id": "txv3vvBr8KYB",
      "assetType": {
        "id": "1fKBO4w0XHg7H",
        "code": "PRD",
        "name": "Printing1"
      },
      "tasks": [
        {
          "id": "1fKBO4w0XHg7H",
          "name": "Task 1",
          "description": "Check oil spill"
        },
        {
          "id": "ESOSA6aCrOER",
          "name": "Sample1",
          "description": "Desc1"
        }
      ]
    },
    {
      "id": "EwQciw9whx6B",
      "tasks": [
        {
          "id": "1nU7uASqfvLPD",
          "name": "TASK8888",
          "description": "DESC8888"
        },
        {
          "id": "EwQciw9whx6B",
          "name": "TASK9999",
          "description": "DESC9999"
        }
      ]
    }
  ];

constructor (private fb: FormBuilder) {}

createTaskFormGroup() {
    const DATA = this.asset;

    return this.fb.group({
      remark: DATA || '',
      status: ['', [Validators.required]]
    });
  }

onChangeStatus(ev: any) {
    console.log(ev);
}

如何修复

错误类型错误:无法分配给对象'[object Object]'的只读属性'id'

选择通过或失败时,会出现无法分配给对象“[object Object]”的只读属性“id”的错误

标签: javascriptangulartypescript

解决方案


更改(change)(ngModelChange)事件。

<nz-radio-group formControlName="status" name="status" (ngModelChange)="onChangeStatus($event)">

文档: https ://ng.ant.design/components/radio/en#nz-radio-group


推荐阅读