转换到对应时区
转换到对应时区并更新 UTC 偏移量,返回 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 时,只更新时区 (和偏移量),本地时间将保持不变。