- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Temporal.Calendar Temporal 即将提出的建议global 对象,以下短函数在日历日期(Javascript 识别的 18 个日历)之间进行转换。
目前,Temporal.Calendar 为其他日历返回的输出日期格式(示例):'2022-02-25[u-ca=persian]'
如何避免使用 toString().split("[")[0])
获取没有后缀 [u-ca=CalendarName]< 的日历日期
因为 Intl.DateTimeFormat()
无法识别后缀?
<script type='module'>
// ====== load Temporray polyfill (not needed after full Temporal implementation) ========
import * as TemporalModule from 'https://cdn.jsdelivr.net/npm/@js-temporal/polyfill@0.3.0/dist/index.umd.js'
//=====================================================================
// Y,M,D are the date to convert from
// options as in Intl.DateTimeFormat() with additional 'from' and 'locale'
// 'from': calendar name to convert from
// 'locale' the locale to use (default 'en')
// 'calendar': calendar to convert to
// All other options as in Intl.DateTimeFormat()
//---------------------------------------
function dateToCalendars(Y, M, D, op={}) {
return new Intl.DateTimeFormat(op.locale??="en",op).format(new Date(temporal.Temporal.PlainDateTime.from({year:Y,month:M,day:D,calendar:op.from??= "gregory"}).toString().split("[")[0]));
}
//---------------------------------------
//===============================
// Example Test Cases
//===============================
console.log(dateToCalendars(2022,2,25)); // default Gregory
// full format Gregory
console.log(dateToCalendars(2022,2,25, {dateStyle: "full"}));
// from Persian to Gregory in full format
console.log(dateToCalendars(1400,12,6,{from: 'persian', dateStyle: "full"}));
// from Persian to Gregory in full format in 'fa' locale
console.log(dateToCalendars(1400,12,6,{from: 'persian', dateStyle: "full", locale: "fa"}));
// from Persian to Islamic in full format in 'fa' locale
console.log(dateToCalendars(1400,12,6,{from: 'persian', calendar: 'islamic', dateStyle:"full", locale: "fa"}));
// from Islamic to Gregory full format (default 'en' locale)
console.log(dateToCalendars(1443,7,24,{from:"islamic", dateStyle:"full"}));
// from Hebrew to Islamic in full format
console.log(dateToCalendars(5782,6,24,{from: 'hebrew', calendar:"islamic", dateStyle:"full"}));
// from Hebrew to Islamic in full format in 'ar' locale
console.log(dateToCalendars(5782,6,24,{from: 'hebrew', calendar:"islamic", dateStyle:"full", locale: 'ar'}));
// from Hebrew to Persian in full format
console.log(dateToCalendars(5782,6,24,{from: 'hebrew', calendar:"persian", dateStyle:"full"}));
// from Hebrew to Gregory in full format in 'he' locale
console.log(dateToCalendars(5782,6,24,{from: 'hebrew', dateStyle:"full", locale: 'he'}));
</script>
最佳答案
您可以将 Temporal.PlainDateTime 对象直接传递给 Intl.DateTimeFormat,或通过使用 Temporal.Calendar.prototype.toLocaleString() 间接传递。这应该使您不必拆分字符串以删除括号。
(一个好的经验法则是,如果您发现自己使用任何 Temporal 对象的 toString() 输出进行字符串操作,或者为此使用 new Date()
,它可能是表示您应该改用 Temporal 方法。)
需要注意的是,您必须确保语言环境的日历与您正在设置格式的日期的日历匹配。您不能使用 toLocaleString() 或 Intl.DateTimeFormat 进行日历转换(除非它来自 ISO 8601 日历)。因此,您应该使用 withCalendar() 方法将日期转换为您想要输出的日历,并确保 Intl 选项中的日历与其匹配。
这是我对这样一个功能的尝试:
function dateToCalendars(year, month, day, op = {}) {
const fromCalendar = op.from ?? 'gregory';
const toCalendar = op.calendar ?? fromCalendar;
const date = Temporal.PlainDate.from({ year, month, day, calendar: fromCalendar })
.withCalendar(toCalendar);
return date.toLocaleString(op.locale ?? 'en', { ...op, calendar: toCalendar });
}
关于javascript - 如何使用 'Temporal' API在不同的日历日期之间进行转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71265710/
为什么 YearMonth 类是 Temporal(接口(interface))而 MonthDay 不是 Temporal? 这看起来很奇怪,因为这两个类的含义几乎相同。 我可能会建议永远不要在使用
如何将 java.time.temporal.Temporal 实例转换为 java.util.Date 实例? java.time.temporal.Temporal someTemporal =
在查看 java 8 Time API 时,我看到很多方法都期望作为参数 ChronoUnit (TemporalUnit 的实现)为 here而其他人则期望 ChronoField (Tempora
我使用@Temporal注释创建了一个实体: import java.util.Date; @Entity public class TestEntity implements java.io.Ser
使用 Temporal.Calendar Temporal 即将提出的建议global 对象,以下短函数在日历日期(Javascript 识别的 18 个日历)之间进行转换。 目前,Temporal.
我得到了一些用户输入的日期时间格式字符串,并且需要检查我可以解析该格式数据的 java.time 时间(在合理范围内,我打算只支持更简单的目前的案例)。 与此表类似的内容: 输入格式预期答案年月日ja
我正在尝试创建一个以不规则间隔收集数据的通用模块。新数据到达后,数据立即从左端到达。这可能大约是每秒 100 次。 在右端,我希望能够“插入”n 个监听器,每个监听器都有自己的常规间隔。为了简单起见,
我在我的客户实体中使用下面的内容来映射日期字段 @Temporal(TemporalType.DATE) @Column(name = "birthdate") @DateTimeFormat(pat
mongoDB 有类似的东西吗? @Temporal(TemporalType.TIMESTAMP) @NotNull @Temporal(TemporalType.TIMESTAMP) @DateT
前言 本篇只会教 Angular Material Datepicker 里最关键的组件 -- Calendar 组件。 还有如何自定义 DateAdapter,让 Calendar 支持&nbs
我正在为 JavaScript 的 proposed new Temporal API 苦苦挣扎.我想做的应该是直截了当的,但我找不到令人信服的解决方案。我一定是遗漏了什么。 任务如下:根据年、月、日
无法使用 @Temporal 为 LocalDate 编译代码。 实体代码 ... @Temporal(TemporalType.DATE) private LocalDate creationDat
我有一个使用 Thymeleaf 作为 View 层的 Spring Boot Web 应用程序,我需要显示一些具有特定时区 (CET = UTC+1/UTC+2) 的日期。 服务器设置为 UTC,所
这是一个有点低级的问题。在 x86 汇编中,有两条 SSE 指令: MOVDQA xmmi, m128 和 MOVNTDQA xmmi, m128 IA-32 软件开发人员手册称 MOVNTDQA 中
我有一个使用 Thymeleaf 作为 View 层的 Spring Boot Web 应用程序,我需要显示一些具有特定时区 (CET = UTC+1/UTC+2) 的日期。 服务器设置为 UTC,所
您好,我想在我的 Java 类中映射一个字段 @Column(name = "date_of_birth") @Temporal(TemporalType.DATE) private Date dat
interface SomeDataClass { TemporalAccessor getSomeTime(); } //somewhere in the impl... public Temp
如果我们使用 @Column(name="birth_date", nullable=false, length=19) public Date getBirthDate() { return
Hibernate 文档包含以下关于 @Temporal 注释的信息: In plain Java APIs, the temporal precision of time is not define
我正在研究各种碰撞检测算法,其中之一是扫描和修剪。我想我对它的工作原理有很好的了解;您为每个轴存储一个排序的端点列表,并且在每次更新期间我必须保持列表排序。以下是我发现的帮助我理解此算法的网页之一的链
我是一名优秀的程序员,十分优秀!