如何将角度气候日期更改为本地时区?

时间:2018-08-26 14:26:14

标签: angular-cli angular-cli-v6

我使用ng服务 当我更改某些文件时,角度cli将显示这样的日期 日期:2018-08-26T13:55:06.527Z-哈希:be4766fc643be6692ac3-时间:126ms

但日期:2018-08-26T13:55:06.527Z不是我的本地时间 如何将角度气候日期更改为本地时区? 我国的时区是台湾的utc + 8

ProblemPicture

1 个答案:

答案 0 :(得分:2)

code来看,我认为这是不可能的:

export function generateBuildStats(hash: string, time: number, colors: boolean): string {
  const w = (x: string) => colors ? bold(white(x)) : x;
  return `Date: ${w(new Date().toISOString())} - Hash: ${w(hash)} - Time: ${w('' + time)}ms`
}