UTC
UTC 添加了 .utc
.local
.isUTC
API,用于在 UTC 中解析或显示。
var utc = require('dayjs/plugin/utc')
dayjs.extend(utc)
// default local time
dayjs().format() //2019-03-06T17:11:55+08:00
// UTC mode
dayjs.utc().format() // 2019-03-06T09:11:55Z
// convert local time to UTC time
dayjs().utc().format() // 2019-03-06T09:11:55Z
// While in UTC mode, all display methods will display in UTC time instead of local time.
// And all getters and setters will internally use the Date#getUTC* and Date#setUTC* methods instead of the Date#get* and Date#set* methods.
dayjs.utc().isUTC() // true
dayjs.utc().local().format() //2019-03-06T17:11:55+08:00
dayjs.utc('2018-01-01', 'YYYY-MM-DD') // with CustomParseFormat plugin
默认情况下,Day.js 会以本地时间解析和显示。
如果你想在 UTC 中解析或显示,则可以使用 dayjs.utc()
代替 dayjs()
。
dayjs.utc(dateType?: string | number | Date | Dayjs, format? string)
dayjs.utc 返回 UTC 模式下的 Dayjs
对象。
.utc()
使用 UTC 时间 返回一个克隆的 Dayjs
对象,其中带有使用 UTC 时间的标志。
.local()
使用本地时间 返回一个克隆的 Dayjs
对象,其中带有使用本地时间的标志。