gpt4 book ai didi

angular - 如何更改 Angular Material 日期选择器中的日期格式?

转载 作者:行者123 更新时间:2023-12-03 21:20:21 24 4
gpt4 key购买 nike

我想将默认日期格式 (YYYY-MM-DD) 更改为其他格式,例如 (MM-DD-YYYY)。

这是我的日历 HTML 结构。

 <mat-form-field class="full-width">
<input matInput [matDatepicker]="picker"
[(ngModel)]="currentDay"
(dateChange)="currentDayChanged()"
required
placeholder="date"
name="currentDay">
<mat-datepicker-toggle matSuffix
[for]="picker">
</mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>

最佳答案

在 AppModule 中设置您的语言环境!

以巴西为例,

import { LOCALE_ID } from '@angular/core';

import localePt from '@angular/common/locales/pt';
registerLocaleData(localePt, 'pt-BR');

@NgModule({
declarations: [
AppComponent
],
imports: [],
providers: [
{ provide: LOCALE_ID, useValue: 'pt-BR' }
],
bootstrap: [AppComponent]
})
export class AppModule { }

关于angular - 如何更改 Angular Material 日期选择器中的日期格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54669348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com