在后端使用 Joda DateTime,如何转换为 JavaScript Date 对象?

发布于 2024-12-05 10:52:57 字数 744 浏览 1 评论 0原文

我在Java后台大量使用 Joda DateTime 对象(根据SO建议) -我的申请结束。但我还没有找到一种非常一致的方法来往返 JavaScript。 MDN 描述的 Date 对象似乎表明 < a href="https://www.rfc-editor.org/rfc/rfc1123" rel="nofollow noreferrer">"符合 IETF 的 RFC 1123时间戳” 是一种标准格式,但我的搜索似乎没有找到 Joda 库中内置的格式化程序来获取我的 DateTime 该格式的对象。

是否有一个简单的方法可以调用将 DateTime 对象转换为我的 Web 客户端可使用的格式?它会支持 IE8(就 JavaScript 而言)吗?

*注意:我没有使用 Spring 或任何自动绑定(序列化/反序列化)的东西,目前它不是一个选项。我知道,我知道...

I'm using the Joda DateTime object (per SO recommendations) heavily on the Java back-end of my application. But I've not figured out a very consistent way to go back and forth to JavaScript. The Date object described by MDN seems to indicate that "IETF-compliant RFC 1123 timestamps" are a standard format, but my searches didn't seem to turn up a formatter built into the Joda library to get my DateTime object in that format.

Is there a simple method I can invoke to convert a DateTime object to a format consumable by my web-client? Will it support IE8 (in terms of JavaScript)?

*Note: I'm not using Spring or anything that does automatic binding (serialization/deserialization) and it's not an option at this point. I know, I know...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二智少女猫性小仙女 2024-12-12 10:52:57

最简单的解决方案是使用 javascript Date 构造函数的自纪元以来的毫秒数版本。对于转换,您可以使用 DateTimeUtils.getInstantMillis(ReadableInstant instant)

The easiest solution is to use the miliseconds since epoch version of the javascript Date constructor. For the conversion you can use DateTimeUtils.getInstantMillis(ReadableInstant instant).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文