设置默认时区
将默认时区从本地时区更改为你的自定义时区。
¥Change default timezone from local time zone to your custom timezone.
你仍然可以在特定 dayjs
对象中自定义不同的时区。
¥You can still custom a different timezone in a specific dayjs
object.
This requires the
Timezone
plugin to work
dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault("America/New_York")
// The same behavior with dayjs.tz("2014-06-01 12:00", "America/New_York")
dayjs.tz("2014-06-01 12:00") // 2014-06-01T12:00:00-04:00
// use another timezone
dayjs.tz("2014-06-01 12:00", "Asia/Tokyo") // 2014-06-01T12:00:00+09:00
// reset timezone
dayjs.tz.setDefault()
注意:dayjs.tz.setDefault
不会影响现有的 dayjs
对象。
¥Notice: dayjs.tz.setDefault
will not affect existing dayjs
objects.