有角材料Datepicker引发多个自定义值访问器将表单控件与未指定名称属性相匹配

时间:2019-07-24 18:37:44

标签: angular angular-material angular-material-datetimepicker

我在我的angular(7)应用程序中使用了一个重要的datepicker小部件。 html如下。

 <mat-form-field>
<input matInput [matDatepicker]="picker" placeholder="Expiry Date" [formControl]="expiryDateInputCtrl">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
<mat-hint *ngIf="isExpiryDateInvalid()" [ngStyle]="{'color': 'red'}" align="start">Invalid Expiry Date</mat-hint>

但是,这在运行时抛出以下错误。

More than one custom value accessor matches form control with unspecified name attribute
at _throwError (forms.js:2144)
at forms.js:2202
at Array.forEach (<anonymous>)
at selectValueAccessor (forms.js:2191)
at new FormControlDirective (forms.js:5042)
at createClass (core.js:22160)
at createDirectiveInstance (core.js:22029)
at createViewNodes (core.js:23255)
at createEmbeddedView (core.js:23163)
at callWithDebugContext (core.js:24177)

我已使用formcontrol“ expiryDateInputCtrl”读取文本字段中的输入值,以检查用户是否输入了有效日期。据我所知,没有其他方法可以验证输入日期。 谁能告诉我原因

2 个答案:

答案 0 :(得分:1)

您可以使用FormBuilderformControlName代替[formControl]

设置您的html:

 <form [formGroup]="tripFormGroup">
    <mat-form-field style="width: 100%">
        <input matInput [matDatepicker]="picker" placeholder="Expiry Date" 
                 formControlName="expiryDateInputCtrl">
        <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
        <mat-datepicker #picker></mat-datepicker>
        <mat-hint *ngIf="isExpiryDateInvalid()" [ngStyle]="{'color': 'red'}" align="start">Invalid Expiry Date</mat-hint>
    </mat-form-field>
   ...
 </form>

答案 1 :(得分:0)

我发现了问题。我已经使用TrimValueAccessorModule从输入控件中删除了不需要的空格,这会导致此问题。下面是工作代码

<mat-form-field style="width: 100%;">
<input matInput [matDatepicker]="picker" placeholder="Expiry Date" (dateChange)="onExpiryDateChange($event)" class="ng-trim-ignore" name="expiryDate" [formControl]="expiryDateInputCtrl">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
<mat-hint *ngIf="isExpiryDateInvalid()" [ngStyle]="{'color': 'red'}" align="start">Invalid Expiry Date</mat-hint>

在这里添加class =“ ng-trim-ignore”解决了该问题