gpt4 book ai didi

angular - 具有名称的表单控件没有值访问器...用于垫选择控件

转载 作者:行者123 更新时间:2023-12-01 09:12:42 24 4
gpt4 key购买 nike

我正在使用 进行一些单元测试 Jasmine karma 对于 Angular 6 验证 是否为 的应用程序表单组 字段有效。我在使用 mat-select 控制时遇到问题。当我运行测试用例时,Karma 给我一个错误说 Error: No value accessor for form control with name: 'importId' .顺便说一句,该组件按我的预期工作得很好。

enter image description here

这是我的组件:

import {Component, Inject, OnInit} from '@angular/core';
import {MAT_DIALOG_DATA, MatDialogRef} from "@angular/material";
import {FormBuilder, FormControl, FormGroup, Validators} from "@angular/forms";

@Component({
selector: 'app-my-component',
templateUrl: './my.component.html',
styleUrls: ['./my.component.css']
})
export class MyComponent implements OnInit {
modelForm: FormGroup;
imps;
constructor(
public dialogRef: MatDialogRef<MyComponent>,
@Inject(MAT_DIALOG_DATA) public data: any) {
this.imps = data['imp'];
}


ngOnInit() {
this.modelForm = new FormGroup({
name: new FormControl(null, Validators.required),
importId: new FormControl(null, Validators.required),
});
}
}

我的 HTML 模板如下所示:
<mat-dialog-content>
<form [formGroup]="modelForm">

<mat-form-field>
<input matInput
placeholder="Name"
formControlName="name">
</mat-form-field>

<mat-form-field>
<mat-select placeholder="Source import"
formControlName="importId">
<mat-option *ngFor="let imp of imps" [value]="imp.uuid">
{{imp.label}}
</mat-option>
</mat-select>
</mat-form-field>

</form>
</mat-dialog-content>

<mat-dialog-actions>
<button mat-raised-button color="primary" [disabled]="!modelForm.valid" (click)="someFakeFunction()">Create</button>
<button mat-raised-button (click)="dialogRef.close()">Cancel</button>
</mat-dialog-actions>

最后,这是我的单元测试:
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {MockMatDialogData, MockMatDialogRef} from '@testing/mock/material';
import {MyComponent} from './evaluation-wizard.component';
import {MAT_DIALOG_DATA, MatDialogRef} from "@angular/material";
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
import {NO_ERRORS_SCHEMA} from "@angular/core";


describe('MyComponent', () => {
let component: MyComponent;
let fixture: ComponentFixture<MyComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [MyComponent],
imports: [ReactiveFormsModule, FormsModule],
providers: [
{provide: MatDialogRef, useValue: MockMatDialogRef},
{provide: MAT_DIALOG_DATA, useClass: MockMatDialogData}
],
schemas: [NO_ERRORS_SCHEMA],
})
.compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(MyComponent);
component = fixture.componentInstance;
component.ngOnInit();
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});

describe('Form validation', () => {
it('form invalid when empty ', function () {
expect(component.modelForm.valid).toBeFalsy();
});

it('name field validity ', () => {
let name = component.modelForm.controls['name'];
expect(name.valid).toBeFalsy();

let errors = {};
errors = name.errors || {};
expect(errors['required']).toBeTruthy();

name.setValue("test");
errors = name.errors || {};
expect(errors['required']).toBeTruthy();
});

});
});

我无法做到这一点,有什么建议我想念的吗?

最佳答案

您没有在测试模块中导入 Material 模块。

所以mat-form-field , mat-select等只是被Angular视为未知元素(因为您使用NO_ERRORS_SCHEMA告诉它这样做)。

关于angular - 具有名称的表单控件没有值访问器...用于垫选择控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55718077/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com