0

我在我的角度组件模板中使用以下代码。

<input
  type="text"
  (click)="dp.toggle()"
  ngbDatepicker
  #dp="ngbDatepicker"
  id="myDatePicker"
  autocomplete="off"
  placeholder="mm/dd/yyyy"
  placement="bottom-left"
  [maxDate]="maxDate"
  formControlName="modifiedAfter" />

表格组:

the form in component is:
  searchForm = new FormGroup({
    modifiedAfter: new FormControl(null),
    name: new FormControl(null),
  }) as TypedFormGroup<SearchModel>;

将 ngbDatePicker 属性删除到输入元素不会引发错误。

在此处输入图像描述

4

0 回答 0