转换为时区
更改时区并更新偏移量,并返回一个 Day.js 对象实例。
这需要 Timezone
插件才能工作
dayjs.extend(utc)
dayjs.extend(timezone)
// this example runs in time zone 'Europe/Berlin' (offset +01:00)
dayjs("2013-11-18T11:55:20") // '2013-11-18T11:55:20+01:00'
dayjs("2013-11-18T11:55:20").tz("America/Toronto") // '2013-11-18T05:55:20-05:00'
dayjs("2013-11-18T11:55:20").tz("America/Toronto", true) // '2013-11-18T11:55:20-05:00'
如果将第二个参数传递为 true,则仅更新时区(和偏移量),保持本地时间不变。