Google Cloud Function美国中心时区?

时间:2018-12-05 18:02:34

标签: google-cloud-functions

我想知道什么时区云功能代码将像EST,CST,MST,PST这样运行。 我部署了函数来获取它,但是它返回了2018-12-05T17:54:00.207Z并且没有应用任何美国时区。它不在美国运行吗?

 export const dateLog = functions.https.onRequest((_, response) => {
    const date = new Date();
    console.log(date);
    response.send(date);
});

1 个答案:

答案 0 :(得分:1)

我认为这是UTC。我尝试了print(datetime.now()),并获得了UTC时间戳。