我的应用程序中有这一行:
const createdOn: moment.Moment = moment.utc(created_on)
created_on
来自如下格式的 api 端点:
{
...,
created_on: "2019-03-08T15:32:26.285Z",
}
这基本上created_on
作为 UTC 时区导入。created_on
也是UTC
。因此,此方法不会破坏时区并正确导入 UTC。我也有这个:
这会在 UTC 时区生成当前时间戳。
moment.utc()
请注意,如果我只是将日期导入时刻,然后将其转换为 UTC,我的时间就会出错。默认情况下,Moment 假定给定日期等于当前访问者时区。我需要按原样导入时间。一直是UTC。
什么是等价物Luxon
?