Angular material: MatDatepicker: No provider found for DateAdapter

后端 未结 4 1976
南旧
南旧 2021-01-01 08:27

I\'m trying to use the Datepicker component in Angular Material. Here is my HTML code:



        
4条回答
  •  独厮守ぢ
    2021-01-01 08:51

    Angullar 8,9

    import { MatDatepickerModule } from '@angular/material/datepicker';
    import { MatNativeDateModule } from '@angular/material/core';
    

    Angular 7 and below

    import { MatDatepickerModule, MatNativeDateModule } from '@angular/material';
    

    You need to import both MatDatepickerModule and MatNativeDateModule under imports and add MatDatepickerModule under providers

    imports: [
        MatDatepickerModule,
        MatNativeDateModule 
      ],
      providers: [  
        MatDatepickerModule,
        MatNativeDateModule  
      ],
    

提交回复
热议问题