mat-list的formControlName给出'mat-form-field必须包含MatFormFieldControl'

问题描述 投票:0回答:1

StackBlitz (runnable example)

组件的Angular HTML模板

<form [formGroup]="myForm">
  <mat-form-field>
    <input matInput placeholder="name" formControlName="name">
  </mat-form-field>

  <mat-form-field>
    <mat-list formControlName="foldersList">
      <mat-list-item *ngFor="let folder of folders"><h4 mat-line>{{folder.name}}</h4></mat-list-item>
    </mat-list>
  </mat-form-field>
</form>

Angular TypeScript组件

export class MyComponent {
  folders = [ { name: 'Photos', updated: new Date('1/1/16') } ];

  myForm: FormGroup = this.fb.group({
    name: ['', Validators.required],
    foldersList: 
           new FormControl([]),
           // new FormArray([]),
           // ['', Validators. Validators.required],
           // this.fb.array([], [Validators.required]),
  });

  constructor(private fb: FormBuilder) {}
}

错误

Error: No value accessor for form control with name: 'foldersList'
Error: mat-form-field must contain a MatFormFieldControl.
angular angular-material angular-reactive-forms angular-components mat-list
1个回答
1
投票

mat-listmat-selection-list组件未实现MatFormFieldControl接口。这就是为什么不能在mat-form-field中使用它们的原因。

© www.soinside.com 2019 - 2024. All rights reserved.