在区域中解析
解析给定时区的日期时间字符串并返回 Day.js 对象实例。
¥Parse date-time string in the given timezone and return a Day.js object instance.
This requires the
Timezone
plugin to work
dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz("2013-11-18T11:55:20", "America/Toronto") // '2013-11-18T11:55:20-05:00'
如果你知道输入字符串的格式,则可以使用它来解析日期,参数与 字符串 + 格式 相同。
¥If you know the format of an input string, you can use that to parse a date, the arguments are the same as String + Format.
This requires the
CustomParseFormat
plugin to work
dayjs.extend(customParseFormat)
dayjs.tz("12-25-1995", "MM-DD-YYYY", "America/Toronto")