Angular MatDatepicker语言环境在输入框中键入失败

时间:2018-10-15 13:44:26

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

如果我使用日期选择器,如

<mat-form-field>
  <input matInput [matDatepicker]="picker" placeholder="Choose a date">
  <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>

并按照

设置语言环境
  providers: [    
    { provide: LOCALE_ID, useValue: 'it-IT' },
    { provide: MAT_DATE_LOCALE, useValue: 'it-IT' }]

如果用户从选择器中选择日期,则可以使用,但是如果他在输入框中键入内容,则日期的解析方式不正确。例如:如果用户在框中选择2018年3月31日,则意大利语格式为dd / mm / yyyy,我们会收到“ 31/03/2018”(可以),但是如果他输入“ 31/03/2018”,日期就不会验证(但这是有效的意大利日期)。如果他输入“ 03/05/2018”,我们将获得3月5日,而不是5月3日。 是尖锐的材料错误还是我犯了一些错误?

我也尝试使用“ it”代替“ it-IT”。

1 个答案:

答案 0 :(得分:0)

根据角材示例,您可以使用此

import {Component} from '@angular/core';
import {MAT_MOMENT_DATE_FORMATS, MomentDateAdapter} from '@angular/material-moment-adapter';
import {DateAdapter, MAT_DATE_FORMATS, MAT_DATE_LOCALE} from '@angular/material/core';

/** @title Datepicker with different locale */
@Component({
  selector: 'datepicker-locale-example',
  templateUrl: 'datepicker-locale-example.html',
  styleUrls: ['datepicker-locale-example.css'],
  providers: [
    // The locale would typically be provided on the root module of your application. We do it at
    // the component level here, due to limitations of our example generation script.
    {provide: MAT_DATE_LOCALE, useValue: 'ja-JP'},

    // `MomentDateAdapter` and `MAT_MOMENT_DATE_FORMATS` can be automatically provided by importing
    // `MatMomentDateModule` in your applications root module. We provide it at the component level
    // here, due to limitations of our example generation script.
    {provide: DateAdapter, useClass: MomentDateAdapter, deps: [MAT_DATE_LOCALE]},
    {provide: MAT_DATE_FORMATS, useValue: MAT_MOMENT_DATE_FORMATS},
  ],
})

确保您npm install --save package @angular/material-moment-adapteryarn add package @angular/material-moment-adapter