当地时间
这将返回一个 Day.js 对象,带有使用本地时间的标志。
¥This returns a Day.js object with a flag to use local time.
This requires the
UTC
plugin to work
dayjs.extend(utc)
var a = dayjs.utc()
a.format() // 2019-03-06T00:00:00Z
a.local().format() //2019-03-06T08:00:00+08:00
查看有关 UTC 模式 的更多信息。
¥Check more information about UTC mode.