Grails 日期类型
在我看来,我有这样的东西:
Date: ${it.date}
它具有以下输出:
Date: 2011-05-24 00:00:00.0.
如何更改日期格式以使最后一部分(00:00:00.0)不出现?
In my view I have something like this:
Date: ${it.date}
which has the following output:
Date: 2011-05-24 00:00:00.0.
How can I change the Date formation so that the last part(00:00:00.0) does not appear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用相关标签格式化日期,如下所示:
更多信息: http://www.grails.org/GSP+Tag+-+formatDate
希望这有帮助。 :)
Yes, you can format a date with the related tag, which is , like this:
Here more info: http://www.grails.org/GSP+Tag+-+formatDate
Hope this helps. :)
如果您要进行大量日期操作,我强烈建议您使用 JodaTime 插件 http:// /www.grails.org/plugin/joda-time。它有自己的标签库,并且可以使用 toString() 方法简单地格式化 DateTime。
在您的情况下,您可以执行以下操作(如果使用 JodaTime):
If you're doing a lot of date manipulations, I'd highly suggest getting the JodaTime plugin http://www.grails.org/plugin/joda-time. It has its own tag library, and formatting the DateTime can be simply done using the toString() method.
In your case you could do the following (if using JodaTime):