本文整理汇总了TypeScript中luxon.DateTime.fromJSDate方法的典型用法代码示例。如果您正苦于以下问题:TypeScript DateTime.fromJSDate方法的具体用法?TypeScript DateTime.fromJSDate怎么用?TypeScript DateTime.fromJSDate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类luxon.DateTime
的用法示例。
在下文中一共展示了DateTime.fromJSDate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: convertDate
function convertDate(date: string | Date): DateTime {
if (typeof date === 'string') {
return DateTime.fromISO(date);
} else {
return DateTime.fromJSDate(date);
}
}
示例2: toDateTime
export function toDateTime(date: Date, calendar: Calendar): LuxonDateTime {
if (!(calendar instanceof Calendar)) {
throw new Error('must supply a Calendar instance')
}
return LuxonDateTime.fromJSDate(date, {
zone: calendar.dateEnv.timeZone,
locale: calendar.dateEnv.locale.codes[0]
})
}
示例3: rezonedDate
public rezonedDate () {
if (this.isUTC) {
return this.date
}
try {
const datetime = DateTime
.fromJSDate(this.date)
const rezoned = datetime.setZone(this.tzid!, { keepLocalTime: true })
return rezoned.toJSDate()
} catch (e) {
if (e instanceof TypeError) {
console.error('Using TZID without Luxon available is unsupported. Returned times are in UTC, not the requested time zone')
}
return this.date
}
}