这将返回一个 Day.js 对象,并带有使用 UTC 时间的标志。 这需要 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 将更改时区,而不会更改当前时间。 dayjs('2016-05-03 22:15:01').utc(true).format() // 2016-05-03T22:15:01Z 查看有关 UTC 模式 的更多信息。