问题描述
我正在尝试在Angular Material中使用Datepicker组件.这是我的HTML代码:
I'm trying to use the Datepicker component in Angular Material. Here is my HTML code:
<input matInput [matDatepicker]="picker" placeholder="Choose a date" disabled>
<mat-datepicker #picker disabled="false"></mat-datepicker>
但是,它对我不起作用,并且出现以下错误:
However, it's not working for me and I'm getting the following error:
该错误消息告诉我,我需要导入MatNativeDateModule和MatDatepickerModule,但是我已经做到了.这是我下面来自app.module.ts的导入代码:
The error message tells me that I need to import MatNativeDateModule as well as MatDatepickerModule but I have done that. Here is my import code below from app.module.ts:
import {
MatFormFieldModule,
MatMenuModule,
MatCheckboxModule,
MatIconModule,
MatDatepickerModule,
MatNativeDateModule
} from '@angular/material';
还有什么我想念的吗?
推荐答案
您需要在导入下同时导入 MatDatepickerModule
和 MatNativeDateModule
并添加 MatDatepickerModule
在提供者下
You need to import both MatDatepickerModule
and MatNativeDateModule
under imports and add MatDatepickerModule
under providers
imports: [
MatDatepickerModule,
MatNativeDateModule
],
providers: [
MatDatepickerModule,
],
这篇关于角材料:MatDatepicker:找不到DateAdapter提供程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!