返回一个在 UTC 模式下的 Day.js 对象。 这依赖 UTC 插件,才能正常运行 dayjs.extend(utc) var a = dayjs() a.format() //2019-03-06T08:00:00+08:00 a.utc().format() // 2019-03-06T00:00:00Z 传入 true 将只改变 UTC 模式而不改变本地时间。 dayjs('2016-05-03 22:15:01').utc(true).format() // 2016-05-03T22:15:01Z 了解更多关于 UTC 模式 的信息。