UTC
这将返回一个 Day.js 对象,其中带有使用 UTC 时间的标志。
¥This returns a Day.js object with a flag to use UTC time.
This requires the
UTC
plugin to work
dayjs.extend(utc)
var a = dayjs()
a.format() //2019-03-06T08:00:00+08:00
a.utc().format() // 2019-03-06T00:00:00Z
传递 true 将更改时区而不更改当前时间。
¥Passing true will change the time zone without changing the current time.
dayjs('2016-05-03 22:15:01').utc(true).format()
// 2016-05-03T22:15:01Z
查看有关 UTC 模式 的更多信息。
¥Check more information about UTC mode.