ftl 模板中的当前日期

发布于 2024-10-20 10:41:33 字数 87 浏览 2 评论 0原文

是否可以在 ftl (FreeMarker) 中以指定格式 (Ymd H:i:s) 打印当前日期? 我想避免将日期从控制器传递到视图。

Is it possible to print current date in specified format (Y-m-d H:i:s) in ftl (FreeMarker) ?
I want to avoid passing date from controller to view.

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

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

发布评论

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

评论(2

空宴 2024-10-27 10:41:33

Freemarker 是一个模板库,没有 Today 变量,您应该考虑将 new Date() Java 对象传递给模板,并格式化它。考虑为此创建一个包装类,以便在调用时准确生成 new Date()。

Freemarker is a templating library, there isn't a today variable, you should consider passing a new Date() Java Object to the template, and format it. Consider to create a wrapper class for this, to generate the new Date() exactly at the time it is called.

北陌 2024-10-27 10:41:33

结合上述答案:将日期对象放入模型后,您可以执行以下操作:

 date?string("yy-MM-dd HH:mm:ss")

参见 freemarker文档

Tying up to the above answer: Once you place date object into your model you do this:

 date?string("yy-MM-dd HH:mm:ss")

see freemarker doc

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