在后端使用 Joda DateTime,如何转换为 JavaScript Date 对象?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的解决方案是使用 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 useDateTimeUtils.getInstantMillis(ReadableInstant instant)
.