3

我需要使用时区(短格式)打印时间戳自定义格式:

{{ '2017-06-29 09:55:01.956-0400' | date:'MMM dd, y hh:mm a' }}

输出:

2017 年 6 月 29 日晚上 7:25

但我需要附加时区,例如:

IST 2017 年 6 月 29 日下午7:25

Angular 提供了 timezone 选项,'z''Z'没有一个给出预期的结果:

'MMM dd, y hh:mm a  z' ==> Jun 29, 2017 07:25 PM India Standard Time
'MMM dd, y hh:mm a  Z' ==> Jun 29, 2017 07:25 PM GMT+5:30

我想要Jul 7, 2017, 12:27:01 AM IST

4

1 回答 1

5

DatePipe 使用 Intl 来格式化日期。因此,由您的站点打开的系统决定应以何种格式返回当前时区。为了实现所需的行为,我建议您创建一个自定义 DatePipe,它将返回所需的 timezoe 缩写。例如:

import { Pipe } from "@angular/core";
import { DatePipe } from "@angular/common";

@Pipe({
    name: "myDate",
    pure: true
})
export class MyDatePipe extends DatePipe {
    transform(value: any, pattern: string = "mediumDate"): string|null {
        let result = super.transform(value, pattern);
        result += " " + this.map[Intl.DateTimeFormat().resolvedOptions().timeZone];
        return result;
    }
    map = {
        "Asia/Calcutta": "IST"
    };
}

但是,您需要将每个可能的时区添加到map对象。请参阅说明此方法的Plunker 示例。

于 2017-07-06T19:58:39.117 回答