我想使用欧洲格式显示日期,dd/MM/yyyy
但使用 DatePipe shortDate格式它只显示使用美国日期样式MM/dd/yyyy
。
我假设默认语言环境是 en_US。也许我在文档中丢失了,但是如何更改 Angular2 应用程序中的默认语言环境设置?或者也许有一些方法可以将自定义格式传递给 DatePipe ?
14 回答
从 Angular2 RC6 开始,您可以通过添加提供程序在应用程序模块中设置默认语言环境:
@NgModule({
providers: [
{ provide: LOCALE_ID, useValue: "en-US" }, //replace "en-US" with your locale
//otherProviders...
]
})
Currency/Date/Number 管道应该选择语言环境。LOCALE_ID 是一个OpaqueToken,要从 angular/core 导入。
import { LOCALE_ID } from '@angular/core';
对于更高级的用例,您可能希望从服务中获取语言环境。创建使用日期管道的组件时,将解析(一次)区域设置:
{
provide: LOCALE_ID,
deps: [SettingsService], //some service handling global settings
useFactory: (settingsService) => settingsService.getLanguage() //returns locale string
}
希望对你有效。
如果您想为您的应用设置一次语言,使用 LOCALE_ID 的解决方案非常棒。但是,如果您想在运行时更改语言,它不起作用。对于这种情况,您可以实现自定义日期管道。
import { DatePipe } from '@angular/common';
import { Pipe, PipeTransform } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
@Pipe({
name: 'localizedDate',
pure: false
})
export class LocalizedDatePipe implements PipeTransform {
constructor(private translateService: TranslateService) {
}
transform(value: any, pattern: string = 'mediumDate'): any {
const datePipe: DatePipe = new DatePipe(this.translateService.currentLang);
return datePipe.transform(value, pattern);
}
}
现在,如果您使用 TranslateService 更改应用程序显示语言(请参阅ngx-translate)
this.translateService.use('en');
您的应用程序中的格式应该会自动更新。
使用示例:
<p>{{ 'note.created-at' | translate:{date: note.createdAt | localizedDate} }}</p>
<p>{{ 'note.updated-at' | translate:{date: note.updatedAt | localizedDate:'fullDate'} }}</p>
或者在这里查看我的简单“Notes”项目。
上面angular5
的答案不再有效!
以下代码:
app.module.ts
@NgModule({
providers: [
{ provide: LOCALE_ID, useValue: "de-at" }, //replace "de-at" with your locale
//otherProviders...
]
})
导致以下错误:
错误:缺少区域设置“de-at”的区域设置数据。
angular5
您必须自己加载和注册使用的语言环境文件。
app.module.ts
import { NgModule, LOCALE_ID } from '@angular/core';
import { registerLocaleData } from '@angular/common';
import localeDeAt from '@angular/common/locales/de-at';
registerLocaleData(localeDeAt);
@NgModule({
providers: [
{ provide: LOCALE_ID, useValue: "de-at" }, //replace "de-at" with your locale
//otherProviders...
]
})
如果你使用TranslateService
from @ngx-translate/core
,下面是一个没有创建新管道的版本,它可以在运行时动态切换(在 Angular 7 上测试)。使用 DatePipe 的locale
参数(文档):
首先,声明您在应用程序中使用的语言环境,例如app.component.ts
:
import localeIt from '@angular/common/locales/it';
import localeEnGb from '@angular/common/locales/en-GB';
.
.
.
ngOnInit() {
registerLocaleData(localeIt, 'it-IT');
registerLocaleData(localeEnGb, 'en-GB');
}
然后,动态使用您的管道:
myComponent.component.html
<span>{{ dueDate | date: 'shortDate' : '' : translateService.currentLang }}</span>
myComponent.component.ts
constructor(public translateService: TranslateService) { ... }
在 app.module.ts 添加以下导入。这里有一个 LOCALE 选项列表。
import es from '@angular/common/locales/es';
import { registerLocaleData } from '@angular/common';
registerLocaleData(es);
然后添加提供者
@NgModule({
providers: [
{ provide: LOCALE_ID, useValue: "es-ES" }, //your locale
]
})
在 html 中使用管道。这是有关此的角度文档。
{{ dateObject | date: 'medium' }}
我查看了 date_pipe.ts ,它有两个有趣的信息。靠近顶部的是以下两行:
// TODO: move to a global configurable location along with other i18n components.
var defaultLocale: string = 'en-US';
靠近底部的是这一行:
return DateFormatter.format(value, defaultLocale, pattern);
这向我表明,日期管道当前被硬编码为“en-US”。
如果我错了,请赐教。
你做这样的事情:
{{ dateObj | date:'shortDate' }}
或者
{{ dateObj | date:'ddmmy' }}
请参阅: https ://angular.io/docs/ts/latest/api/common/index/DatePipe-pipe.html
对于那些对 AOT 有问题的人,您需要使用 useFactory 做一些不同的事情:
export function getCulture() {
return 'fr-CA';
}
@NgModule({
providers: [
{ provide: LOCALE_ID, useFactory: getCulture },
//otherProviders...
]
})
从 Angular 9 开始,本地化过程发生了变化。查看官方文档。
请按照以下步骤操作:
- 如果还没有本地化包,请添加:
ng add @angular/localize
- 正如文档中所说:
Angular 存储库包括常见的语言环境。您可以通过在应用的工作区配置文件 (angular.json) 的 sourceLocale 字段中设置源语言环境来更改应用的源语言环境。构建过程(在本指南中将翻译合并到应用程序中描述)使用应用程序的 angular.json 文件自动设置 LOCALE_ID 令牌并加载语言环境数据。
所以像这样设置语言环境angular.json
(可用语言环境的列表可以在这里找到):
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"test-app": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"i18n": {
"sourceLocale": "es"
},
....
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
...
"configurations": {
"production": {
...
},
"ru": {
"localize": ["ru"]
},
"es": {
"localize": ["es"]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "test-app:build"
},
"configurations": {
"production": {
"browserTarget": "test-app:build:production"
},
"ru":{
"browserTarget": "test-app:build:ru"
},
"es": {
"browserTarget": "test-app:build:es"
}
}
},
...
}
},
...
"defaultProject": "test-app"
}
基本上,您需要sourceLocale
在i18n
部分中定义并添加具有特定语言环境的构建配置,例如"localize": ["es"]
. 您可以选择添加它所以serve
部分
build
使用or构建具有特定语言环境的应用程序serve
:ng serve --configuration=es
我在同样的问题上苦苦挣扎,并没有为我使用这个
{{dateObj | date:'ydM'}}
所以,我尝试了一种解决方法,不是最好的解决方案,但它有效:
{{dateObj | date:'d'}}/{{dateObj | date:'M'}}/{{dateObj | date:'y'}}
我总是可以创建一个自定义管道。
复制谷歌管道更改了语言环境,它适用于我的国家,可能他们没有完成所有语言环境。下面是代码。
import {
isDate,
isNumber,
isPresent,
Date,
DateWrapper,
CONST,
isBlank,
FunctionWrapper
} from 'angular2/src/facade/lang';
import {DateFormatter} from 'angular2/src/facade/intl';
import {PipeTransform, WrappedValue, Pipe, Injectable} from 'angular2/core';
import {StringMapWrapper, ListWrapper} from 'angular2/src/facade/collection';
var defaultLocale: string = 'hr';
@CONST()
@Pipe({ name: 'mydate', pure: true })
@Injectable()
export class DatetimeTempPipe implements PipeTransform {
/** @internal */
static _ALIASES: { [key: string]: String } = {
'medium': 'yMMMdjms',
'short': 'yMdjm',
'fullDate': 'yMMMMEEEEd',
'longDate': 'yMMMMd',
'mediumDate': 'yMMMd',
'shortDate': 'yMd',
'mediumTime': 'jms',
'shortTime': 'jm'
};
transform(value: any, args: any[]): string {
if (isBlank(value)) return null;
if (!this.supports(value)) {
console.log("DOES NOT SUPPORT THIS DUEYE ERROR");
}
var pattern: string = isPresent(args) && args.length > 0 ? args[0] : 'mediumDate';
if (isNumber(value)) {
value = DateWrapper.fromMillis(value);
}
if (StringMapWrapper.contains(DatetimeTempPipe._ALIASES, pattern)) {
pattern = <string>StringMapWrapper.get(DatetimeTempPipe._ALIASES, pattern);
}
return DateFormatter.format(value, defaultLocale, pattern);
}
supports(obj: any): boolean { return isDate(obj) || isNumber(obj); }
}
好的,我提出这个解决方案,非常简单,使用ngx-translate
import { DatePipe } from '@angular/common';
import { Pipe, PipeTransform } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
@Pipe({
name: 'localizedDate',
pure: false
})
export class LocalizedDatePipe implements PipeTransform {
constructor(private translateService: TranslateService) {
}
transform(value: any): any {
const date = new Date(value);
const options = { weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
};
return date.toLocaleString(this.translateService.currentLang, options);
}
}
上面的答案肯定是正确的。请注意,也可以使用管道传递语言环境:
{{ now | date: undefined:undefined:'de-DE' }}
(前两个参数是日期格式和时区,如果您对默认设置很好,请不要定义它们)
不是您想为所有管道做的事情,但有时它会很方便。
这可能有点晚了,但就我而言(角度 6),我在 DatePipe 之上创建了一个简单的管道,如下所示:
private _regionSub: Subscription;
private _localeId: string;
constructor(private _datePipe: DatePipe, private _store: Store<any>) {
this._localeId = 'en-AU';
this._regionSub = this._store.pipe(select(selectLocaleId))
.subscribe((localeId: string) => {
this._localeId = localeId || 'en-AU';
});
}
ngOnDestroy() { // Unsubscribe }
transform(value: string | number, format?: string): string {
const dateFormat = format || getLocaleDateFormat(this._localeId, FormatWidth.Short);
return this._datePipe.transform(value, dateFormat, undefined, this._localeId);
}
可能不是最好的解决方案,但简单且有效。