无论当前时区如何,我都需要获取UTC中的当前日期和时间。因此,如果我当前的当地时间是12:00,并且我处于UTC + 1:00,那么我想获得12:00 UTC。
如何在moment.js或day.js中轻松实现这一目标?
答案 0 :(得分:0)
您不需要为此的库。
malloc
如果您真的想使用Moment:
new Date() // gets a Date object representing "now" (internally in UTC)
new Date().toISOString() // returns "now", in UTC, formatted as an ISO 8601 string
Day.js需要UTC plugin,但其工作原理类似于Moment。